Evaluates a vector plus the product of a scalar and a vector
Namespace: Extreme.Mathematics.ImplementationAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
void MultiplyAndAddInPlace(
int n,
T alpha,
TVector x,
TVector y
)
Sub MultiplyAndAddInPlace (
n As Integer,
alpha As T,
x As TVector,
y As TVector
)
void MultiplyAndAddInPlace(
int n,
T alpha,
TVector x,
TVector y
)
abstract MultiplyAndAddInPlace :
n : int *
alpha : 'T *
x : 'TVector *
y : 'TVector -> unit
Parameters
- n
- Type: SystemInt32
The number of elements in the vectors
x and y. - alpha
- Type: T
The scalar value used to multiply
the elements of x. - x
- Type: TVector
A reference to a one-dimensional array
containing the elements of the vector x.
- y
- Type: TVector
A reference to a one-dimensional array
containing the elements of the vector y.
The elements of y are overwritten with
the result.
Numerical Libraries
Supported in: 5.x
Reference