GRASS GIS 7 Programmer's Manual
7.6.0(2019)-exported
heigvec.c
Go to the documentation of this file.
1
/* heigvec.c CCMATH mathematics library source code.
2
*
3
* Copyright (C) 2000 Daniel A. Atkinson All rights reserved.
4
* This code may be redistributed under the terms of the GNU library
5
* public license (LGPL). ( See the lgpl.license file for details.)
6
* ------------------------------------------------------------------------
7
*/
8
#include <stdlib.h>
9
#include "
ccmath.h
"
10
void
heigvec
(
Cpx
* a,
double
*ev,
int
n)
11
{
12
double
*dp;
13
14
dp = (
double
*)calloc(n,
sizeof
(
double
));
15
chousv
(a, ev, dp, n);
16
qrecvc
(ev, a, dp, n);
17
hconj
(a, n);
18
free(dp);
19
}
hconj
void hconj(Cpx *u, int n)
Definition:
hconj.c:9
qrecvc
void qrecvc(double *eval, Cpx *evec, double *ud, int n)
Definition:
qrecvc.c:9
chousv
void chousv(Cpx *a, double *d, double *ud, int n)
Definition:
chousv.c:10
ccmath.h
heigvec
void heigvec(Cpx *a, double *ev, int n)
Definition:
heigvec.c:10
complex
Definition:
ccmath.h:38
external
ccmath
heigvec.c
Generated on Fri Jan 28 2022 05:15:36 for GRASS GIS 7 Programmer's Manual by
1.8.13