GRASS Programmer's Manual
6.5.svn(2014)-r66266
Main Page
Related Pages
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
ortho.c
Go to the documentation of this file.
1
/* ortho.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 "
ccmath.h
"
9
static
double
tpi = 6.28318530717958647;
10
11
void
ortho
(
double
*e,
int
n
)
12
{
13
int
i, j, k, m;
14
15
double
*p, *
q
, c,
s
, a,
unfl
();
16
17
for
(i = 0, p = e; i <
n
; ++i) {
18
for
(j = 0; j <
n
; ++j) {
19
if
(i == j)
20
*p++ = 1.;
21
else
22
*p++ = 0.;
23
}
24
}
25
for
(i = 0, m = n - 1; i < m; ++i) {
26
for
(j = i + 1; j <
n
; ++j) {
27
a = tpi *
unfl
();
28
c = cos(a);
29
s = sin(a);
30
p = e + n * i;
31
q = e + n * j;
32
for
(k = 0; k <
n
; ++k) {
33
a = *p * c + *q *
s
;
34
*q = *q * c - *p *
s
;
35
*p++ = a;
36
++
q
;
37
}
38
}
39
}
40
}
forms.q
tuple q
Definition:
forms.py:2019
dialogs.s
tuple s
Definition:
psmap/dialogs.py:2766
ortho
void ortho(double *evc, int n)
Definition:
ortho.c:11
ccmath.h
n
int n
Definition:
dataquad.c:291
unfl
double unfl()
Definition:
unfl.c:10
lib
external
ccmath
ortho.c
Generated on Sat Jan 2 2016 01:46:49 for GRASS Programmer's Manual by
1.8.5