VectorMultiply(Vector, Double) Operator |
Vector-Scalar 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 *(
Vector A,
double s
)
Public Shared Operator * (
A As Vector,
s As Double
) As Vector
Request Example
View SourceParameters
- A Vector
- The left side vector of the multiplication operator.
- s Double
- The right side scalar of the multiplication operator.
Return Value
VectorA vector that represents the result of the multiplication.
See Also