Click or drag to resize

ManagedLinearAlgebraProvider.MatrixNorm(Norm, Int32, Int32, Complex[]) Method

Computes the requested Norm of the matrix.

Namespace: Altaxo.Calc.Providers.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntax
C#
public double MatrixNorm(
	Norm norm,
	int rows,
	int columns,
	Complex[] matrix
)

Parameters

norm  Norm
The type of norm to compute.
rows  Int32
The number of rows.
columns  Int32
The number of columns.
matrix  Complex[]
The matrix to compute the norm from.

Return Value

Double
The requested Norm of the matrix.

Implements

ILinearAlgebraProvider<T>.MatrixNorm(Norm, Int32, Int32, T[])
See Also