diff options
Diffstat (limited to 'misc/examples')
| -rw-r--r-- | misc/examples/multidim.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/misc/examples/multidim.c b/misc/examples/multidim.c index 49b24172..49d7fbc4 100644 --- a/misc/examples/multidim.c +++ b/misc/examples/multidim.c @@ -5,7 +5,6 @@ #include <stdio.h> using_cspan3(ispan, int); -#define c_ALL 0,-1 int main() { @@ -32,7 +31,7 @@ int main() puts("ss3 = ms3[:, 1:3, 1:3]"); ispan3 ss3 = ms3; //cspan_slice(&ss3, {c_ALL}, {1,3}, {1,3}); - ss3 = cspan_subslice(ispan3, &ms3, {c_ALL}, {1,3}, {1,3}); + ss3 = cspan_slice(ispan3, &ms3, {c_ALL}, {1,3}, {1,3}); for (int i=0; i != ss3.dim[0]; i++) { for (int j=0; j != ss3.dim[1]; j++) { |
