public Cloud(
DoubleMatrix coordinates,
DoubleMatrix weights,
Basis basis
)
Public Sub New (
coordinates As DoubleMatrix,
weights As DoubleMatrix,
basis As Basis
)
public:
Cloud(
DoubleMatrix^ coordinates,
DoubleMatrix^ weights,
Basis^ basis
)
new :
coordinates : DoubleMatrix *
weights : DoubleMatrix *
basis : Basis -> Cloud
Matrix coordinates has as many rows as the number of points in the cloud. The number of columns is the dimension of the space in which the points lie.
Each row represents the coordinates of a given point in the cloud. Points are thus well ordered, and hence thoroughly identified, by the index of the row in which its coordinates are stored. As a consequence, the same order must be followed when inserting entries in the vector of weights.
ArgumentNullException | coordinates is null. -or- weights is null. -or- basis is null. |
ArgumentOutOfRangeException | weights is not a column vector. -or- coordinates and weights have unequal numbers of rows. -or- The Dimension of basis is not equal to the number of columns of coordinates. |