diff options
author | Alberto Ruiz <aruiz@um.es> | 2007-05-28 12:22:24 +0000 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2007-05-28 12:22:24 +0000 |
commit | 80673221e704b451e0d9468d6dfe1a38ad676c07 (patch) | |
tree | 1cba10d54d457ebfda1ec7810149664818834027 /lib/Data/Packed/aux.h | |
parent | c3a1c3ed7c1be6f255ff3bd4f8ec6d2dd2a29b66 (diff) |
common trans
Diffstat (limited to 'lib/Data/Packed/aux.h')
-rw-r--r-- | lib/Data/Packed/aux.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Data/Packed/aux.h b/lib/Data/Packed/aux.h new file mode 100644 index 0000000..c51234a --- /dev/null +++ b/lib/Data/Packed/aux.h | |||
@@ -0,0 +1,6 @@ | |||
1 | #define VEC(A) int A##n, double*A##p | ||
2 | #define MAT(A) int A##r, int A##c, double* A##p | ||
3 | #define KVEC(A) int A##n, const double*A##p | ||
4 | #define KMAT(A) int A##r, int A##c, const double* A##p | ||
5 | |||
6 | int trans(int size, KMAT(x),MAT(t)); | ||