Creates a new matrix with the same dimensions as a given matrix, whose values are the result of applying the square root function to each element of the matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMathPremium (in NMathPremium.dll) Version: 5.3.0.0

Syntax

C#
public static FloatComplexMatrix Sqrt(
	FloatComplexMatrix A
)
Visual Basic
Public Shared Function Sqrt ( _
	A As FloatComplexMatrix _
) As FloatComplexMatrix
Visual C++
public:
static FloatComplexMatrix^ Sqrt(
	FloatComplexMatrix^ A
)

Return Value

A new matrix.

Remarks

B[i,j] = System.Math.Sqrt(A[i,j])

See Also