Click or drag to resize

MatrixTPointwiseMultiply(MatrixT) Method

Pointwise multiplies this matrix with another matrix.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public Matrix<T> PointwiseMultiply(
	Matrix<T> other
)

Parameters

other  MatrixT
The matrix to pointwise multiply with this one.

Return Value

MatrixT
A new matrix that is the pointwise multiplication of this matrix and other.
Exceptions
ExceptionCondition
ArgumentExceptionIf this matrix and other are not the same size.
See Also