1CLASCL2(1) LAPACK routine (version 3.2)                             CLASCL2(1)
2
3
4

NAME

6       CLASCL2 - performs a diagonal scaling on a vector
7

SYNOPSIS

9       SUBROUTINE CLASCL2 ( M, N, D, X, LDX )
10
11           IMPLICIT       NONE
12
13           INTEGER        M, N, LDX
14
15           REAL           D( * )
16
17           COMPLEX        X( LDX, * )
18

PURPOSE

20       CLASCL2 performs a diagonal scaling on a vector:
21         x <-- D * x
22       where the diagonal matrix D is stored as a vector.
23       Eventually  to be replaced by BLAS_sge_diag_scale in the new BLAS stan‐
24       dard.
25

ARGUMENTS

27       The size of the vectors X and D.
28
29       D      (input) REAL array, length N
30              Diagonal  matrix  D,  stored  as  a  vector  of  length  N.    X
31              (input/output) COMPLEX array, length N On entry, the vector X to
32              be scaled by D.  On exit, the scaled vector.
33
34
35
36    LAPACK routine (version 3.2) November 2008                      CLASCL2(1)
Impressum