Note: This API is now obsolete.
Multiplies a vector on the left by this vector.
Namespace: Extreme.Mathematics.LinearAlgebraAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
[ObsoleteAttribute("Use the static Multiply method instead.")]
public Vector<T> Multiply(
TransposeOperation operation,
Vector<T> vector
)
<ObsoleteAttribute("Use the static Multiply method instead.")>
Public Function Multiply (
operation As TransposeOperation,
vector As Vector(Of T)
) As Vector(Of T)
public:
[ObsoleteAttribute(L"Use the static Multiply method instead.")]
Vector<T>^ Multiply(
TransposeOperation operation,
Vector<T>^ vector
)
[<ObsoleteAttribute("Use the static Multiply method instead.")>]
member Multiply :
operation : TransposeOperation *
vector : Vector<'T> -> Vector<'T>
Parameters
- operation
- Type: Extreme.MathematicsTransposeOperation
The operation to be performed on this instance before multiplying. - vector
- Type: Extreme.MathematicsVectorT
The right operand of the multiplication.
Return Value
Type:
VectorTA vector that is the product of this instace, transformed as specified by
operation, and
vector.
Numerical Libraries
Obsolete (compiler warning) in 6.0
Reference