Statistiques
| Révision :

root / man / man3 / HPL_dlaswp04N.3

Historique | Voir | Annoter | Télécharger (3,14 ko)

1 1 equemene
.TH HPL_dlaswp04N 3 "September 10, 2008" "HPL 2.0" "HPL Library Functions"
2 1 equemene
.SH NAME
3 1 equemene
HPL_dlaswp04N \- copy rows of U in A and replace them with columns of W.
4 1 equemene
.SH SYNOPSIS
5 1 equemene
\fB\&#include "hpl.h"\fR
6 1 equemene
7 1 equemene
\fB\&void\fR
8 1 equemene
\fB\&HPL_dlaswp04N(\fR
9 1 equemene
\fB\&const int\fR
10 1 equemene
\fI\&M0\fR,
11 1 equemene
\fB\&const int\fR
12 1 equemene
\fI\&M1\fR,
13 1 equemene
\fB\&const int\fR
14 1 equemene
\fI\&N\fR,
15 1 equemene
\fB\&double *\fR
16 1 equemene
\fI\&U\fR,
17 1 equemene
\fB\&const int\fR
18 1 equemene
\fI\&LDU\fR,
19 1 equemene
\fB\&double *\fR
20 1 equemene
\fI\&A\fR,
21 1 equemene
\fB\&const int\fR
22 1 equemene
\fI\&LDA\fR,
23 1 equemene
\fB\&const double *\fR
24 1 equemene
\fI\&W0\fR,
25 1 equemene
\fB\&const double *\fR
26 1 equemene
\fI\&W\fR,
27 1 equemene
\fB\&const int\fR
28 1 equemene
\fI\&LDW\fR,
29 1 equemene
\fB\&const int *\fR
30 1 equemene
\fI\&LINDXA\fR,
31 1 equemene
\fB\&const int *\fR
32 1 equemene
\fI\&LINDXAU\fR
33 1 equemene
\fB\&);\fR
34 1 equemene
.SH DESCRIPTION
35 1 equemene
\fB\&HPL_dlaswp04N\fR
36 1 equemene
copies M0 rows of U into A and replaces those rows of U
37 1 equemene
with columns of W. In addition M1 - M0 columns of  W  are copied into
38 1 equemene
rows of U.
39 1 equemene
.SH ARGUMENTS
40 1 equemene
.TP 8
41 1 equemene
M0      (local input)           const int
42 1 equemene
On entry, M0 specifies the number of rows of U that should be
43 1 equemene
copied into  A  and replaced by columns of  W.  M0 must be at
44 1 equemene
least zero.
45 1 equemene
.TP 8
46 1 equemene
M1      (local input)           const int
47 1 equemene
On entry, M1 specifies the number of columns of W that should
48 1 equemene
be copied into rows of U. M1 must be at least zero.
49 1 equemene
.TP 8
50 1 equemene
N       (local input)           const int
51 1 equemene
On entry, N specifies the length of the rows of U that should
52 1 equemene
be copied into A. N must be at least zero.
53 1 equemene
.TP 8
54 1 equemene
U       (local input/output)    double *
55 1 equemene
On entry,  U  points to  an array of dimension (LDU,N).  This
56 1 equemene
array contains the rows that are to be copied into A.
57 1 equemene
.TP 8
58 1 equemene
LDU     (local input)           const int
59 1 equemene
On entry, LDU specifies the leading dimension of the array U.
60 1 equemene
LDU must be at least MAX(1,M1).
61 1 equemene
.TP 8
62 1 equemene
A       (local output)          double *
63 1 equemene
On entry, A points to an array of dimension (LDA,N). On exit,
64 1 equemene
the  rows of this array specified by  LINDXA  are replaced by
65 1 equemene
rows of U indicated by LINDXAU.
66 1 equemene
.TP 8
67 1 equemene
LDA     (local input)           const int
68 1 equemene
On entry, LDA specifies the leading dimension of the array A.
69 1 equemene
LDA must be at least MAX(1,M0).
70 1 equemene
.TP 8
71 1 equemene
W0      (local input)           const double *
72 1 equemene
On entry,  W0  is an array of size (M-1)*LDW+1, that contains
73 1 equemene
the destination offset  in U where the columns of W should be
74 1 equemene
copied.
75 1 equemene
.TP 8
76 1 equemene
W       (local input)           const double *
77 1 equemene
On entry, W  is an array of size (LDW,M0+M1),  that  contains
78 1 equemene
data to be copied into U.  For i in [M0..M0+M1),  the entries
79 1 equemene
W(:,i) are copied into the row W0(i*LDW) of U.
80 1 equemene
.TP 8
81 1 equemene
LDW     (local input)           const int
82 1 equemene
On entry, LDW specifies the leading dimension of the array W.
83 1 equemene
LDW must be at least MAX(1,N+1).
84 1 equemene
.TP 8
85 1 equemene
LINDXA  (local input)           const int *
86 1 equemene
On entry, LINDXA  is an array of dimension  M0 containing the
87 1 equemene
local row indexes A into which rows of U are copied.
88 1 equemene
.TP 8
89 1 equemene
LINDXAU (local input)           const int *
90 1 equemene
On entry, LINDXAU  is an array of dimension M0 that  contains
91 1 equemene
the local  row indexes of  U that should be copied into A and
92 1 equemene
replaced by the columns of W.
93 1 equemene
.SH SEE ALSO
94 1 equemene
.BR HPL_dlaswp00N \ (3),
95 1 equemene
.BR HPL_dlaswp10N \ (3),
96 1 equemene
.BR HPL_dlaswp01N \ (3),
97 1 equemene
.BR HPL_dlaswp01T \ (3),
98 1 equemene
.BR HPL_dlaswp02N \ (3),
99 1 equemene
.BR HPL_dlaswp03N \ (3),
100 1 equemene
.BR HPL_dlaswp03T \ (3),
101 1 equemene
.BR HPL_dlaswp04N \ (3),
102 1 equemene
.BR HPL_dlaswp04T \ (3),
103 1 equemene
.BR HPL_dlaswp05N \ (3),
104 1 equemene
.BR HPL_dlaswp05T \ (3),
105 1 equemene
.BR HPL_dlaswp06N \ (3),
106 1 equemene
.BR HPL_dlaswp06T \ (3).