File: Level-2-CBLAS-Functions.html

package info (click to toggle)
gsl-ref-html 1.10-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 4,496 kB
  • ctags: 2,955
  • sloc: makefile: 33
file content (316 lines) | stat: -rw-r--r-- 24,064 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
<html lang="en">
<head>
<title>Level 2 CBLAS Functions - GNU Scientific Library -- Reference Manual</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="GNU Scientific Library -- Reference Manual">
<meta name="generator" content="makeinfo 4.8">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="GSL-CBLAS-Library.html" title="GSL CBLAS Library">
<link rel="prev" href="Level-1-CBLAS-Functions.html" title="Level 1 CBLAS Functions">
<link rel="next" href="Level-3-CBLAS-Functions.html" title="Level 3 CBLAS Functions">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 The GSL Team.

Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.2 or
any later version published by the Free Software Foundation; with the
Invariant Sections being ``GNU General Public License'' and ``Free Software
Needs Free Documentation'', the Front-Cover text being ``A GNU Manual'',
and with the Back-Cover Text being (a) (see below).  A copy of the
license is included in the section entitled ``GNU Free Documentation
License''.

(a) The Back-Cover Text is: ``You have freedom to copy and modify this
GNU Manual, like GNU software.''-->
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
  pre.display { font-family:inherit }
  pre.format  { font-family:inherit }
  pre.smalldisplay { font-family:inherit; font-size:smaller }
  pre.smallformat  { font-family:inherit; font-size:smaller }
  pre.smallexample { font-size:smaller }
  pre.smalllisp    { font-size:smaller }
  span.sc    { font-variant:small-caps }
  span.roman { font-family:serif; font-weight:normal; } 
  span.sansserif { font-family:sans-serif; font-weight:normal; } 
--></style>
</head>
<body>
<div class="node">
<p>
<a name="Level-2-CBLAS-Functions"></a>
Next:&nbsp;<a rel="next" accesskey="n" href="Level-3-CBLAS-Functions.html">Level 3 CBLAS Functions</a>,
Previous:&nbsp;<a rel="previous" accesskey="p" href="Level-1-CBLAS-Functions.html">Level 1 CBLAS Functions</a>,
Up:&nbsp;<a rel="up" accesskey="u" href="GSL-CBLAS-Library.html">GSL CBLAS Library</a>
<hr>
</div>

<h3 class="section">D.2 Level 2</h3>

<div class="defun">
&mdash; Function: void <b>cblas_sgemv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA, const int M, const int N, const float alpha, const float * A, const int lda, const float * x, const int incx, const float beta, float * y, const int incy</var>)<var><a name="index-cblas_005fsgemv-2544"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_sgbmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA, const int M, const int N, const int KL, const int KU, const float alpha, const float * A, const int lda, const float * x, const int incx, const float beta, float * y, const int incy</var>)<var><a name="index-cblas_005fsgbmv-2545"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_strmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const float * A, const int lda, float * x, const int incx</var>)<var><a name="index-cblas_005fstrmv-2546"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_stbmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const int K, const float * A, const int lda, float * x, const int incx</var>)<var><a name="index-cblas_005fstbmv-2547"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_stpmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const float * Ap, float * x, const int incx</var>)<var><a name="index-cblas_005fstpmv-2548"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_strsv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const float * A, const int lda, float * x, const int incx</var>)<var><a name="index-cblas_005fstrsv-2549"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_stbsv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const int K, const float * A, const int lda, float * x, const int incx</var>)<var><a name="index-cblas_005fstbsv-2550"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_stpsv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const float * Ap, float * x, const int incx</var>)<var><a name="index-cblas_005fstpsv-2551"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_dgemv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA, const int M, const int N, const double alpha, const double * A, const int lda, const double * x, const int incx, const double beta, double * y, const int incy</var>)<var><a name="index-cblas_005fdgemv-2552"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_dgbmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA, const int M, const int N, const int KL, const int KU, const double alpha, const double * A, const int lda, const double * x, const int incx, const double beta, double * y, const int incy</var>)<var><a name="index-cblas_005fdgbmv-2553"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_dtrmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const double * A, const int lda, double * x, const int incx</var>)<var><a name="index-cblas_005fdtrmv-2554"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_dtbmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const int K, const double * A, const int lda, double * x, const int incx</var>)<var><a name="index-cblas_005fdtbmv-2555"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_dtpmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const double * Ap, double * x, const int incx</var>)<var><a name="index-cblas_005fdtpmv-2556"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_dtrsv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const double * A, const int lda, double * x, const int incx</var>)<var><a name="index-cblas_005fdtrsv-2557"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_dtbsv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const int K, const double * A, const int lda, double * x, const int incx</var>)<var><a name="index-cblas_005fdtbsv-2558"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_dtpsv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const double * Ap, double * x, const int incx</var>)<var><a name="index-cblas_005fdtpsv-2559"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_cgemv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA, const int M, const int N, const void * alpha, const void * A, const int lda, const void * x, const int incx, const void * beta, void * y, const int incy</var>)<var><a name="index-cblas_005fcgemv-2560"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_cgbmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA, const int M, const int N, const int KL, const int KU, const void * alpha, const void * A, const int lda, const void * x, const int incx, const void * beta, void * y, const int incy</var>)<var><a name="index-cblas_005fcgbmv-2561"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_ctrmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const void * A, const int lda, void * x, const int incx</var>)<var><a name="index-cblas_005fctrmv-2562"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_ctbmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const int K, const void * A, const int lda, void * x, const int incx</var>)<var><a name="index-cblas_005fctbmv-2563"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_ctpmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const void * Ap, void * x, const int incx</var>)<var><a name="index-cblas_005fctpmv-2564"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_ctrsv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const void * A, const int lda, void * x, const int incx</var>)<var><a name="index-cblas_005fctrsv-2565"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_ctbsv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const int K, const void * A, const int lda, void * x, const int incx</var>)<var><a name="index-cblas_005fctbsv-2566"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_ctpsv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const void * Ap, void * x, const int incx</var>)<var><a name="index-cblas_005fctpsv-2567"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_zgemv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA, const int M, const int N, const void * alpha, const void * A, const int lda, const void * x, const int incx, const void * beta, void * y, const int incy</var>)<var><a name="index-cblas_005fzgemv-2568"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_zgbmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA, const int M, const int N, const int KL, const int KU, const void * alpha, const void * A, const int lda, const void * x, const int incx, const void * beta, void * y, const int incy</var>)<var><a name="index-cblas_005fzgbmv-2569"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_ztrmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const void * A, const int lda, void * x, const int incx</var>)<var><a name="index-cblas_005fztrmv-2570"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_ztbmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const int K, const void * A, const int lda, void * x, const int incx</var>)<var><a name="index-cblas_005fztbmv-2571"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_ztpmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const void * Ap, void * x, const int incx</var>)<var><a name="index-cblas_005fztpmv-2572"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_ztrsv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const void * A, const int lda, void * x, const int incx</var>)<var><a name="index-cblas_005fztrsv-2573"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_ztbsv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const int K, const void * A, const int lda, void * x, const int incx</var>)<var><a name="index-cblas_005fztbsv-2574"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_ztpsv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag, const int N, const void * Ap, void * x, const int incx</var>)<var><a name="index-cblas_005fztpsv-2575"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_ssymv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const float alpha, const float * A, const int lda, const float * x, const int incx, const float beta, float * y, const int incy</var>)<var><a name="index-cblas_005fssymv-2576"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_ssbmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const int K, const float alpha, const float * A, const int lda, const float * x, const int incx, const float beta, float * y, const int incy</var>)<var><a name="index-cblas_005fssbmv-2577"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_sspmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const float alpha, const float * Ap, const float * x, const int incx, const float beta, float * y, const int incy</var>)<var><a name="index-cblas_005fsspmv-2578"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_sger</b> (<var>const enum CBLAS_ORDER order, const int M, const int N, const float alpha, const float * x, const int incx, const float * y, const int incy, float * A, const int lda</var>)<var><a name="index-cblas_005fsger-2579"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_ssyr</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const float alpha, const float * x, const int incx, float * A, const int lda</var>)<var><a name="index-cblas_005fssyr-2580"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_sspr</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const float alpha, const float * x, const int incx, float * Ap</var>)<var><a name="index-cblas_005fsspr-2581"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_ssyr2</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const float alpha, const float * x, const int incx, const float * y, const int incy, float * A, const int lda</var>)<var><a name="index-cblas_005fssyr2-2582"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_sspr2</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const float alpha, const float * x, const int incx, const float * y, const int incy, float * A</var>)<var><a name="index-cblas_005fsspr2-2583"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_dsymv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const double alpha, const double * A, const int lda, const double * x, const int incx, const double beta, double * y, const int incy</var>)<var><a name="index-cblas_005fdsymv-2584"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_dsbmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const int K, const double alpha, const double * A, const int lda, const double * x, const int incx, const double beta, double * y, const int incy</var>)<var><a name="index-cblas_005fdsbmv-2585"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_dspmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const double alpha, const double * Ap, const double * x, const int incx, const double beta, double * y, const int incy</var>)<var><a name="index-cblas_005fdspmv-2586"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_dger</b> (<var>const enum CBLAS_ORDER order, const int M, const int N, const double alpha, const double * x, const int incx, const double * y, const int incy, double * A, const int lda</var>)<var><a name="index-cblas_005fdger-2587"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_dsyr</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const double alpha, const double * x, const int incx, double * A, const int lda</var>)<var><a name="index-cblas_005fdsyr-2588"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_dspr</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const double alpha, const double * x, const int incx, double * Ap</var>)<var><a name="index-cblas_005fdspr-2589"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_dsyr2</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const double alpha, const double * x, const int incx, const double * y, const int incy, double * A, const int lda</var>)<var><a name="index-cblas_005fdsyr2-2590"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_dspr2</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const double alpha, const double * x, const int incx, const double * y, const int incy, double * A</var>)<var><a name="index-cblas_005fdspr2-2591"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_chemv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const void * alpha, const void * A, const int lda, const void * x, const int incx, const void * beta, void * y, const int incy</var>)<var><a name="index-cblas_005fchemv-2592"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_chbmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const int K, const void * alpha, const void * A, const int lda, const void * x, const int incx, const void * beta, void * y, const int incy</var>)<var><a name="index-cblas_005fchbmv-2593"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_chpmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const void * alpha, const void * Ap, const void * x, const int incx, const void * beta, void * y, const int incy</var>)<var><a name="index-cblas_005fchpmv-2594"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_cgeru</b> (<var>const enum CBLAS_ORDER order, const int M, const int N, const void * alpha, const void * x, const int incx, const void * y, const int incy, void * A, const int lda</var>)<var><a name="index-cblas_005fcgeru-2595"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_cgerc</b> (<var>const enum CBLAS_ORDER order, const int M, const int N, const void * alpha, const void * x, const int incx, const void * y, const int incy, void * A, const int lda</var>)<var><a name="index-cblas_005fcgerc-2596"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_cher</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const float alpha, const void * x, const int incx, void * A, const int lda</var>)<var><a name="index-cblas_005fcher-2597"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_chpr</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const float alpha, const void * x, const int incx, void * A</var>)<var><a name="index-cblas_005fchpr-2598"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_cher2</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const void * alpha, const void * x, const int incx, const void * y, const int incy, void * A, const int lda</var>)<var><a name="index-cblas_005fcher2-2599"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_chpr2</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const void * alpha, const void * x, const int incx, const void * y, const int incy, void * Ap</var>)<var><a name="index-cblas_005fchpr2-2600"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_zhemv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const void * alpha, const void * A, const int lda, const void * x, const int incx, const void * beta, void * y, const int incy</var>)<var><a name="index-cblas_005fzhemv-2601"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_zhbmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const int K, const void * alpha, const void * A, const int lda, const void * x, const int incx, const void * beta, void * y, const int incy</var>)<var><a name="index-cblas_005fzhbmv-2602"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_zhpmv</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const void * alpha, const void * Ap, const void * x, const int incx, const void * beta, void * y, const int incy</var>)<var><a name="index-cblas_005fzhpmv-2603"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_zgeru</b> (<var>const enum CBLAS_ORDER order, const int M, const int N, const void * alpha, const void * x, const int incx, const void * y, const int incy, void * A, const int lda</var>)<var><a name="index-cblas_005fzgeru-2604"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_zgerc</b> (<var>const enum CBLAS_ORDER order, const int M, const int N, const void * alpha, const void * x, const int incx, const void * y, const int incy, void * A, const int lda</var>)<var><a name="index-cblas_005fzgerc-2605"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_zher</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const double alpha, const void * x, const int incx, void * A, const int lda</var>)<var><a name="index-cblas_005fzher-2606"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_zhpr</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const double alpha, const void * x, const int incx, void * A</var>)<var><a name="index-cblas_005fzhpr-2607"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_zher2</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const void * alpha, const void * x, const int incx, const void * y, const int incy, void * A, const int lda</var>)<var><a name="index-cblas_005fzher2-2608"></a></var><br>
</div>

<div class="defun">
&mdash; Function: void <b>cblas_zhpr2</b> (<var>const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, const int N, const void * alpha, const void * x, const int incx, const void * y, const int incy, void * Ap</var>)<var><a name="index-cblas_005fzhpr2-2609"></a></var><br>
</div>

<hr>The GNU Scientific Library - a free numerical library licensed under the GNU GPL<br>Back to the <a href="/software/gsl/">GNU Scientific Library Homepage</a></body></html>