Multiplies a matrix and a vector.
Namespace: Extreme.MathematicsAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.17114.0)
public static Vector<T> MultiplyInto<T>(
LinearOperator<T> left,
Vector<T> right,
Vector<T> result
)
Public Shared Function MultiplyInto(Of T) (
left As LinearOperator(Of T),
right As Vector(Of T),
result As Vector(Of T)
) As Vector(Of T)
public:
generic<typename T>
static Vector<T>^ MultiplyInto(
LinearOperator<T>^ left,
Vector<T>^ right,
Vector<T>^ result
)
static member MultiplyInto :
left : LinearOperator<'T> *
right : Vector<'T> *
result : Vector<'T> -> Vector<'T>
Parameters
- left
- Type: Extreme.Mathematics.LinearAlgebraLinearOperatorT
The left operand. - right
- Type: Extreme.MathematicsVectorT
The right operand. - result
- Type: Extreme.MathematicsVectorT
The vector that is to hold the result. May be .
Type Parameters
- T
Return Value
Type:
VectorTThe product of
leftwith the vector
right.
Numerical Libraries
Supported in: 6.0
Reference