changeset 380:36e01b3e51f4

Use Array instead of ArrayN
author hauberg
date Mon, 19 Oct 2009 20:21:28 +0000
parents 45fa2cf12808
children ec672dc16907
files src/deriche.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/deriche.cc
+++ b/src/deriche.cc
@@ -99,7 +99,7 @@
         return octave_value(b);     
      }
      case vecgrad:{
-        ArrayN<double> b(dim_vector(h,w,2));
+        Array<double> b(dim_vector(h,w,2));
         dericheVec(p.fortran_vec(), b.fortran_vec(), h, w, h, alpha);
         return octave_value(b);
      }