diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-11 14:09:59 -0600 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-11 14:09:59 -0600 |
commit | faaef032d866f956665653e58086af9872c3c093 (patch) | |
tree | a3eb7311af47755c8ad50e7d8e0af4d892c5c200 /inc/types.h | |
parent | 1ce75ab5fe461ddd3823403754f5b4c543016abc (diff) | |
download | cmath-faaef032d866f956665653e58086af9872c3c093.tar.gz cmath-faaef032d866f956665653e58086af9872c3c093.zip |
matrices
Diffstat (limited to 'inc/types.h')
-rw-r--r-- | inc/types.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/inc/types.h b/inc/types.h index 4af17db..6df04c2 100644 --- a/inc/types.h +++ b/inc/types.h @@ -10,6 +10,12 @@ DEFINE_ARRAY(int32_t); DEFINE_ARRAY(float); DEFINE_ARRAY(double); +DEFINE_MATRIX(int); +DEFINE_MATRIX(uint32_t); +DEFINE_MATRIX(int32_t); +DEFINE_MATRIX(float); +DEFINE_MATRIX(double); + typedef struct Line { double m; double a; |