Click or drag to resize

GraphSparseMatrixMatMul Method

https://www.emgu.com/wiki/index.php/Emgu_TF
SparseMatrixMatMul

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation SparseMatrixMatMul(
	Output a,
	Output b,
	bool transpose_a = false,
	bool transpose_b = false,
	bool adjoint_a = false,
	bool adjoint_b = false,
	bool transpose_output = false,
	bool conjugate_output = false,
	string opName = "SparseMatrixMatMul"
)

Parameters

a
Type: Emgu.TFOutput
Input to the operation.
b
Type: Emgu.TFOutput
Input to the operation.
transpose_a (Optional)
Type: SystemBoolean
transpose a
transpose_b (Optional)
Type: SystemBoolean
transpose b
adjoint_a (Optional)
Type: SystemBoolean
adjoint a
adjoint_b (Optional)
Type: SystemBoolean
adjoint b
transpose_output (Optional)
Type: SystemBoolean
transpose output
conjugate_output (Optional)
Type: SystemBoolean
conjugate output
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] output(type: DtInvalid).
See Also