public static ComplexMatrix Add(
DoubleMatrix left,
ComplexMatrix right
)
Public Shared Function Add (
left As DoubleMatrix,
right As ComplexMatrix
) As ComplexMatrix
public:
static ComplexMatrix^ Add(
DoubleMatrix^ left,
ComplexMatrix^ right
)
static member Add :
left : DoubleMatrix *
right : ComplexMatrix -> ComplexMatrix
Let and
be the left
number of rows and columns, respectively, and consider its generic entry
Analogously, Let and
be the right
number of rows and columns, respectively, and let its generic entry given by
The method operates as follows.
ArgumentNullException | left is null. -or- right is null. |
ArgumentException | Both left and right are not scalar matrices, and they have not the same number of rows and columns. |