Skip to content
Snippets Groups Projects
Commit c73dfb59 authored by Eric Wait's avatar Eric Wait
Browse files

Mat to C conversions

parent 4a98f4e9
No related branches found
No related tags found
No related merge requests found
......@@ -5,4 +5,7 @@
#define SQR(x) ((x)*(x))
#define MAX(x,y) (x>y)?(x):(y)
#define MIN(x,y) (x<y)?(x):(y)
\ No newline at end of file
#define MIN(x,y) (x<y)?(x):(y)
#define mat_to_c(x) (x-1)
#define c_to_mat(x) (x+1)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment