Click or drag to resize

DLARTVRun Method

Purpose ======= DLARTV applies a vector of real plane rotations to elements of the real vectors x and y. For i = 1,2,...,n ( x(i) ) := ( c(i) s(i) ) ( x(i) ) ( y(i) ) ( -s(i) c(i) ) ( y(i) )

Namespace: DotNumerics.LinearAlgebra.CSLapack
Assembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public void Run(
	int N,
	ref double[] X,
	int offset_x,
	int INCX,
	ref double[] Y,
	int offset_y,
	int INCY,
	double[] C,
	int offset_c,
	double[] S,
	int offset_s,
	int INCC
)
Request Example View Source

Parameters

N  Int32
(input) INTEGER The number of plane rotations to be applied.
X  Double
(input/output) DOUBLE PRECISION array, dimension (1+(N-1)*INCX) The vector x.
offset_x  Int32
 
INCX  Int32
(input) INTEGER The increment between elements of X. INCX .GT. 0.
Y  Double
(input/output) DOUBLE PRECISION array, dimension (1+(N-1)*INCY) The vector y.
offset_y  Int32
 
INCY  Int32
(input) INTEGER The increment between elements of Y. INCY .GT. 0.
C  Double
(input) DOUBLE PRECISION array, dimension (1+(N-1)*INCC) The cosines of the plane rotations.
offset_c  Int32
 
S  Double
(input) DOUBLE PRECISION array, dimension (1+(N-1)*INCC) The sines of the plane rotations.
offset_s  Int32
 
INCC  Int32
(input) INTEGER The increment between elements of C and S. INCC .GT. 0.
See Also