Purpose
=======
*
scales a vector by a constant.
uses unrolled loops for increment equal to one.
jack dongarra, linpack, 3/11/78.
modified 3/93 to return if incx .le. 0.
modified 12/3/93, array(1) declarations changed to array(*)
Namespace: DotNumerics.LinearAlgebra.CSLapackAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public void Run(
int N,
double DA,
ref double[] DX,
int offset_dx,
int INCX
)
Public Sub Run (
N As Integer,
DA As Double,
ByRef DX As Double(),
offset_dx As Integer,
INCX As Integer
)
Request Example
View SourceParameters
- N Int32
-
- DA Double
-
- DX Double
-
- offset_dx Int32
-
- INCX Int32
-
See Also