DGGSVDRun Method

Definition

Namespace: DotNumerics.LinearAlgebra.CSLapack
Assembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
public void Run(
	string JOBU,
	string JOBV,
	string JOBQ,
	int M,
	int N,
	int P,
	ref int K,
	ref int L,
	ref double[] A,
	int offset_a,
	int LDA,
	ref double[] B,
	int offset_b,
	int LDB,
	ref double[] ALPHA,
	int offset_alpha,
	ref double[] BETA,
	int offset_beta,
	ref double[] U,
	int offset_u,
	int LDU,
	ref double[] V,
	int offset_v,
	int LDV,
	ref double[] Q,
	int offset_q,
	int LDQ,
	ref double[] WORK,
	int offset_work,
	ref int[] IWORK,
	int offset_iwork,
	ref int INFO
)

Parameters

JOBU  String
 
JOBV  String
 
JOBQ  String
 
M  Int32
 
N  Int32
 
P  Int32
 
K  Int32
 
L  Int32
 
A  Double
 
offset_a  Int32
 
LDA  Int32
 
B  Double
 
offset_b  Int32
 
LDB  Int32
 
ALPHA  Double
 
offset_alpha  Int32
 
BETA  Double
 
offset_beta  Int32
 
U  Double
 
offset_u  Int32
 
LDU  Int32
 
V  Double
 
offset_v  Int32
 
LDV  Int32
 
Q  Double
 
offset_q  Int32
 
LDQ  Int32
 
WORK  Double
 
offset_work  Int32
 
IWORK  Int32
 
offset_iwork  Int32
 
INFO  Int32
 

See Also