NMath User's Guide

TOC | Previous | Next | Index

6.1 Class Names (.NET, C#, CSharp, VB, Visual Basic, F#)

The classes that encapsulate matrices in NMath are named <Type>Matrix, where <Type> is Float, Double, FloatComplex, or DoubleComplex. (See Chapter 3 for a description of the complex number classes.) Thus:

The FloatMatrix class represents a matrix of single-precision floating point numbers.

The DoubleMatrix class represents a matrix of double-precision floating point numbers.

The FloatComplexMatrix class represents a matrix of single-precision complex numbers.

The DoubleComplexMatrix class represents a matrix of double-precision complex numbers.


Top

Top