NMath User's Guide

TOC | Previous | Next | Index

1.1 Product Components (.NET, C#, CSharp, VB, Visual Basic, F#)

All NMath types are organized into a single namespace for simplicity.

CenterSpace.NMath.Core

Prior to NMath 7.0 the library was organized in four namespaces: Core, Matrix, Analysis, and Stats. Although these namespaces can still be included for backward compatibility, they all now simply forward to the single CenterSpace.NMath.Core namespace.

To avoid using fully qualified names, preface your code with the namespace statement.

Code Example – C#

using CenterSpace.NMath.Core;

Code Example – VB

Imports CenterSpace.NMath.Core

All NMath code shown in this manual assumes the presence of such namespace statements.


Top

Top