ILNumerics Ultimate VS

ILMathtriuT Method

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Extract upper triangular part of matrix A.

[ILNumerics Computing Engine]

Namespace:  ILNumerics
Assembly:  ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax

public static RetArray<T> triu<T>(
	InArray<T> A
)

Parameters

A
Type: ILNumericsInArrayT
Input matrix, size [m x n].

Type Parameters

T
Element type.

Return Value

Type: RetArrayT
Array of size [m x n], holding upper triangular part of A.
Exceptions

ExceptionCondition
ArgumentExceptionIf A has more than 2 dimensions.
Remarks

The diagonal elements of A are included in the upper triangular matrix returned.

[ILNumerics Computing Engine]

See Also

Reference

MathInternal.tril``1(InArrayUMP)