| DoubleComplexMatrix(Int32, Int32, DoubleComplex) Constructor |
Constructs a DoubleComplexMatrix instance of the specifed dimensions and
initializes all matrix element values to the given value.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public DoubleComplexMatrix(
int rows,
int cols,
DoubleComplex initialValue
)
Public Sub New (
rows As Integer,
cols As Integer,
initialValue As DoubleComplex
)
public:
DoubleComplexMatrix(
int rows,
int cols,
DoubleComplex initialValue
)
new :
rows : int *
cols : int *
initialValue : DoubleComplex -> DoubleComplexMatrix
Parameters
- rows Int32
- The number of rows.
- cols Int32
- The number of columns.
- initialValue DoubleComplex
-
The value used to initialize all matrix elements.
See Also