GRASS 8 Programmer's Manual
8.6.0dev(2026)-ddeab64dbf
Loading...
Searching...
No Matches
eigval.c
Go to the documentation of this file.
1
/* eigval.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
eigval
(
double
*a,
double
*
ev
,
int
n)
11
{
12
double
*
dp
;
13
14
dp
= (
double
*)
calloc
(n,
sizeof
(
double
));
15
house
(a,
ev
,
dp
, n);
16
qreval
(
ev
,
dp
, n);
17
free
(
dp
);
18
}
ccmath.h
qreval
int qreval(double *eval, double *ud, int n)
Definition
qreval.c:9
house
void house(double *a, double *d, double *ud, int n)
Definition
house.c:10
AMI_STREAM
Definition
ami_stream.h:153
eigval
void eigval(double *a, double *ev, int n)
Definition
eigval.c:10
free
void free(void *)
stdlib.h
lib
external
ccmath
eigval.c
Generated on Sun Apr 5 2026 06:59:55 for GRASS 8 Programmer's Manual by
1.9.8