Evaluates the product of a scalar and a vector.
Namespace: Extreme.Mathematics.LinearAlgebra.Providers
Assembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 4.2.11333.0 (4.2.12253.0)
Syntax
| Visual C++ |
public:
virtual void Dscal(
int n,
double alpha,
array<double>^ x,
int xOffset,
int incx
) override
|
Parameters
-
n
- Type: System..::..Int32
The number of elements in the vector
x.
-
alpha
- Type: System..::..Double
The scalar value used to multiply
the elements of x.
-
x
- Type: array<System..::..Double>[]()[][]
A reference to a one-dimensional array
containing the elements of the vector x.
The elements of x are overwritten with
the result.
-
xOffset
- Type: System..::..Int32
Offset into x.
-
incx
- Type: System..::..Int32
The increment for the array x.
See Also