| DoubleComplexMatrixSet(Int32, Slice, DoubleComplex) Method |
Sets the values in the specified row and columns to the
given value.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public DoubleComplexMatrix Set(
int row,
Slice colSlice,
DoubleComplex d
)
Public Function Set (
row As Integer,
colSlice As Slice,
d As DoubleComplex
) As DoubleComplexMatrix
public:
DoubleComplexMatrix^ Set(
int row,
Slice^ colSlice,
DoubleComplex d
)
member Set :
row : int *
colSlice : Slice *
d : DoubleComplex -> DoubleComplexMatrix
Parameters
- row Int32
- The row.
- colSlice Slice
- The columns.
- d DoubleComplex
- The value to set.
Return Value
DoubleComplexMatrixA reference to self.
See Also