Matrix.GetLeftNullSpace Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0

Overload List

GetLeftNullSpace<T>(Matrix<T>)

C#
public static Matrix<T> GetLeftNullSpace<T>(
	this Matrix<T> matrix
)

Parameters

matrix  Matrix<T>
 

Type Parameters

T

Return Value

Matrix<T>

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Matrix<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

GetLeftNullSpace<T>(Matrix<T>, T)

C#
public static Matrix<T> GetLeftNullSpace<T>(
	this Matrix<T> matrix,
	T tolerance
)

Parameters

matrix  Matrix<T>
 
tolerance  T
 

Type Parameters

T

Return Value

Matrix<T>

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Matrix<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also