Returns a matrix whose elements are the inverses (reciprocals) of the components of another matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> Reciprocal<T>(
this Matrix<T> matrix
)
<ExtensionAttribute>
Public Shared Function Reciprocal(Of T) (
matrix As Matrix(Of T)
) As Matrix(Of T)
public:
[ExtensionAttribute]
generic<typename T>
static Matrix<T>^ Reciprocal(
Matrix<T>^ matrix
)
[<ExtensionAttribute>]
static member Reciprocal :
matrix : Matrix<'T> -> Matrix<'T>
Parameters
- matrix
- Type: Extreme.MathematicsMatrixT
A MatrixT.
Type Parameters
- T
Return Value
Type:
MatrixTA matrix whose elements are the inverses (reciprocals) of the components of
matrix.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
MatrixT. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Reference