VectorMultiply(Double, Vector) Operator |
Scalar-Vector multiplication.
Namespace: DotNumerics.LinearAlgebraAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public static Vector operator *(
double s,
Vector A
)
Public Shared Operator * (
s As Double,
A As Vector
) As Vector
Request Example
View SourceParameters
- s Double
- The left side scalar of the multiplication operator.
- A Vector
- The right side vector of the multiplication operator.
Return Value
VectorA vector that represents the result of the multiplication.
See Also