Click or drag to resize

FloatComplexSchurDecomp(FloatComplexMatrix, Boolean) Constructor

Constructs a FloatComplexSchurDecomp instance of a given matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FloatComplexSchurDecomp(
	FloatComplexMatrix A,
	bool inPlace
)

Parameters

A  FloatComplexMatrix
A matrix to factor.
inPlace  Boolean
If true, the Schur decomposition will overwrite the input matrix A. If false the input matrix A will be preserved at the expense of making a copy of A. Note that if inPlace is true, the input matrix A will not be checked for valid input (NaN's and infinity's).
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if the matrix contains any NaN values and inPlace is false.
See Also