represents a scalar mathematical function of ParamLength number of input parameters (or variables).
ParamLength
for instance, a scalar addition function is merely a mapping from domains: $X,Y \in \R$ to $Z \in \R$: $\text{Add} : X \times Y \rightarrow Z$ .
const add_func: NumericMapFunc<2> = (x, y) => x + y Copy
const add_func: NumericMapFunc<2> = (x, y) => x + y
represents a scalar mathematical function of
ParamLength
number of input parameters (or variables).for instance, a scalar addition function is merely a mapping from domains: $X,Y \in \R$ to $Z \in \R$: $\text{Add} : X \times Y \rightarrow Z$ .