Computes a column-wise orthonormalized 3d matrix.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public Matrix3d Orthonormalize()
Visual Basic (Declaration)
Public Function Orthonormalize As Matrix3d
Visual C++
public:
Matrix3d^ Orthonormalize()

Return Value

Returns the matrix column-wise orthonormalized.

Remarks

The column vectors of the orthonormalized matrix are pairwise orthogonal and have norm 1. Uses the Gram-Schmidt algorithm.

See Also