RadialBasisUpdate Method (Double, Double, Double) |
Adds a set of data points with user-specified weights.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public void Update(
double[,] x,
double[] f,
double[] w
)
Public Sub Update (
x As Double(,),
f As Double(),
w As Double()
)
public:
void Update(
array<double,2>^ x,
array<double>^ f,
array<double>^ w
)
member Update :
x : float[,] *
f : float[] *
w : float[] -> unit
Parameters
- x
- Type: SystemDouble
A double matrix of size n by nDim
containing the locations of the data points for each dimension.
- f
- Type: SystemDouble
A double array containing the function values at the
data points.
- w
- Type: SystemDouble
A double array containing the weights associated with
the data points.
See Also