public double Distance(
DoubleMatrix left,
DoubleMatrix right
)
Public Function Distance (
left As DoubleMatrix,
right As DoubleMatrix
) As Double
public:
double Distance(
DoubleMatrix^ left,
DoubleMatrix^ right
)
member Distance :
left : DoubleMatrix *
right : DoubleMatrix -> float
Coordinates must be passed as row vectors.
Let be the
matrix representation
of this instance, and let
and
be
left and right,
respectively. Then
method Distance(DoubleMatrix, DoubleMatrix)
returns
where is the
norm defined by
basis
.
ArgumentNullException | left is null. -or- right is null. |
ArgumentOutOfRangeException | left is not a row
vector. -or- left has Count not equal to the Dimension of the Basis. -or- right is not a row vector. -or- right has Count not equal to the Dimension of the Basis. |