Statistiques
| Révision :

root / man / man3 / HPL_dlaswp03N.3

Historique | Voir | Annoter | Télécharger (2,13 ko)

1
.TH HPL_dlaswp03N 3 "September 10, 2008" "HPL 2.0" "HPL Library Functions"
2
.SH NAME
3
HPL_dlaswp03N \- copy rows of W into U.
4
.SH SYNOPSIS
5
\fB\&#include "hpl.h"\fR
6
 
7
\fB\&void\fR
8
\fB\&HPL_dlaswp03N(\fR
9
\fB\&const int\fR
10
\fI\&M\fR,
11
\fB\&const int\fR
12
\fI\&N\fR,
13
\fB\&double *\fR
14
\fI\&U\fR,
15
\fB\&const int\fR
16
\fI\&LDU\fR,
17
\fB\&const double *\fR
18
\fI\&W0\fR,
19
\fB\&const double *\fR
20
\fI\&W\fR,
21
\fB\&const int\fR
22
\fI\&LDW\fR
23
\fB\&);\fR
24
.SH DESCRIPTION
25
\fB\&HPL_dlaswp03N\fR
26
copies columns of  W  into  rows  of an  array  U.  The
27
destination in U of these columns contained in W is stored within W0.
28
.SH ARGUMENTS
29
.TP 8
30
M       (local input)           const int
31
On entry, M  specifies  the  number  of columns of  W  stored
32
contiguously that should be copied into U. M must be at least
33
zero.
34
.TP 8
35
N       (local input)           const int
36
On entry,  N  specifies  the  length of columns of  W  stored
37
contiguously that should be copied into U. N must be at least
38
zero.
39
.TP 8
40
U       (local input/output)    double *
41
On entry, U points to an array of dimension (LDU,N).  Columns
42
of W are copied as rows within this array U at  the positions
43
specified in W0.
44
.TP 8
45
LDU     (local input)           const int
46
On entry, LDU specifies the leading dimension of the array U.
47
LDU must be at least MAX(1,M).
48
.TP 8
49
W0      (local input)           const double *
50
On entry,  W0  is an array of size (M-1)*LDW+1, that contains
51
the destination offset  in U where the columns of W should be
52
copied.
53
.TP 8
54
W       (local input)           const double *
55
On entry, W  is an array of size (LDW,M),  that contains data
56
to be copied into U. For i in [0..M),  entries W(:,i)  should
57
be copied into the row or column W0(i*LDW) of U.
58
.TP 8
59
LDW     (local input)           const int
60
On entry, LDW specifies the leading dimension of the array W.
61
LDW must be at least MAX(1,N+1).
62
.SH SEE ALSO
63
.BR HPL_dlaswp00N \ (3),
64
.BR HPL_dlaswp10N \ (3),
65
.BR HPL_dlaswp01N \ (3),
66
.BR HPL_dlaswp01T \ (3),
67
.BR HPL_dlaswp02N \ (3),
68
.BR HPL_dlaswp03N \ (3),
69
.BR HPL_dlaswp03T \ (3),
70
.BR HPL_dlaswp04N \ (3),
71
.BR HPL_dlaswp04T \ (3),
72
.BR HPL_dlaswp05N \ (3),
73
.BR HPL_dlaswp05T \ (3),
74
.BR HPL_dlaswp06N \ (3),
75
.BR HPL_dlaswp06T \ (3).