Click or drag to resize

Cloud Constructor (DoubleMatrix)

Initializes a new instance of the Cloud class that contains points whose coordinates are taken with respect to the standard basis. To each point is assigned a weight equal to the reciprocal of the number of points.

Namespace:  Novacta.Analytics.Advanced
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public Cloud(
	DoubleMatrix coordinates
)

Parameters

coordinates
Type: Novacta.AnalyticsDoubleMatrix
The coordinates of the cloud points.
Exceptions
ExceptionCondition
ArgumentNullExceptioncoordinates is null.
Remarks

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. Cloud points are automatically weighted using as elementary weight the reciprocal of the number of points. The coordinates are automatically referred to the standard basis having dimension equal to the number of columns of coordinates.

See Also