SeparableNDFunction
Stay organized with collections
Save and categorize content based on your preferences.
Function of N arguments expressed as a sum of functions of one argument.
JSON representation |
{
"components": {
string: {
object (Function1D )
},
...
},
"constantPrice": number
} |
Fields |
components |
map (key: string, value: object (Function1D ))
Components of the function, with one entry per argument/dimension. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" } .
|
constantPrice |
number
Constant part of the function.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-01-14 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-01-14 UTC."],[[["Represents a function of N arguments as a sum of single-argument functions and a constant price."],["Utilizes a JSON structure with `components` defining the functions for each argument and `constantPrice` for the constant term."],["`components` is a map where each key corresponds to an argument and its value is a `Function1D` object defining the function for that argument."]]],["The content describes a function with multiple arguments, represented as a sum of single-argument functions. The `components` field, a map, stores these individual functions, with each entry corresponding to one argument/dimension. The structure utilizes a key-value pair format. The `constantPrice` field provides the function's constant value, contributing to the overall sum. The function is represented by an object, and the arguments are described in the function1D documentation.\n"]]