-
Notifications
You must be signed in to change notification settings - Fork 1
/
ten.h
43 lines (34 loc) · 1.39 KB
/
ten.h
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
typedef struct Ten {
real t[3 * 3];
} Ten;
int ten_matrix_ini(const real[3 * 3], /**/ Ten *);
int ten_col_ini(const real[3], const real[3], const real[3], /**/ Ten *);
int ten_row_ini(const real[3], const real[3], const real[3], /**/ Ten *);
int ten_dyadic(const real[3], const real[3], /**/ Ten *);
int ten_plus(const Ten *, const Ten *, /**/ Ten *);
int ten_minus(const Ten *, const Ten *, /**/ Ten *);
int ten_scalar(const Ten *, real, /**/ Ten *);
int ten_vec(const Ten *, const real[3], /**/ real[3]);
int vec_ten(const real[3], const Ten *, /**/ real[3]);
/* y *= s, y += x, y -= x, x = -x */
int ten_scale(real, /*io */ Ten *);
int ten_add(const Ten * x, /*io */ Ten * y);
int ten_sub(const Ten * x, /*io */ Ten * y);
int ten_neg(Ten * x);
/* y = y * x, y = x * y */
int ten_mult_right(const Ten * x, /*io */ Ten * y);
int ten_mult_left(const Ten * x, /*io */ Ten * y);
real ten_trace(const Ten *);
real ten_determinant(const Ten *);
/* y += a*x */
int ten_axpy(real a, const Ten * x, /*io */ Ten * y);
int ten_copy(const Ten *, /**/ Ten *);
int ten_zero( /**/ Ten *);
int ten_one( /**/ Ten *);
int ten_sprintf(const Ten *, const char *fmt, /**/ char *s);
int ten_fprintf(const Ten *, FILE *, const char *fmt);
int ten_printf(const Ten *, const char *fmt);
int ten_fscanf(FILE *, /**/ Ten *);
int ten_line(const Ten * T);
/* read from argument list */
int ten_argv(const char **pq[], /**/ Ten *);