Click or drag to resize

GraphXlaSelfAdjointEig Method

http://www.emgu.com
Computes the eigen decomposition of a batch of self-adjoint matrices

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.4.1.1202
Syntax
public Operation XlaSelfAdjointEig(
	Output a,
	bool lower,
	long max_iter,
	float epsilon,
	string opName = "XlaSelfAdjointEig"
)

Parameters

a
Type: Emgu.TFOutput
Input to the operation: the input tensor.
lower
Type: SystemBoolean
a boolean specifies whether the calculation is done with the lower triangular part or the upper triangular part.
max_iter
Type: SystemInt64
maximum number of sweep update, i.e., the whole lower triangular part or upper triangular part based on parameter lower. Heuristically, it has been argued that approximately logN sweeps are needed in practice (Ref: Golub & van Loan "Matrix Computation").
epsilon
Type: SystemSingle
the tolerance ratio.
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation

[Missing <returns> documentation for "M:Emgu.TF.Graph.XlaSelfAdjointEig(Emgu.TF.Output,System.Boolean,System.Int64,System.Single,System.String)"]

See Also