Click or drag to resize

MatrixExtensionsToComplex32(MatrixComplex) Method

Converts a matrix to single precision complex numbers.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static Matrix<Complex32> ToComplex32(
	this Matrix<Complex> matrix
)

Parameters

matrix  MatrixComplex
The matrix to convert.

Return Value

MatrixComplex32
A complex matrix converted from matrix.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type MatrixComplex. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also