comparison liboctave/dNDArray.cc @ 4762:bec345670e56

[project @ 2004-02-16 05:07:23 by jwe]
author jwe
date Mon, 16 Feb 2004 05:07:23 +0000
parents a308566c8b42
children ef5e598f099b
comparison
equal deleted inserted replaced
4761:c62b067609f8 4762:bec345670e56
211 { 211 {
212 MX_ND_REAL_OP_REDUCTION (+= elem (iter_idx), 0); 212 MX_ND_REAL_OP_REDUCTION (+= elem (iter_idx), 0);
213 } 213 }
214 214
215 bool 215 bool
216 NDArray::cat (NDArray& cat_arr, int dim, int add_dim) const 216 NDArray::cat (const NDArray& ra_arg, int dim, int add_dim)
217 { 217 {
218 MX_ND_CAT; 218 // MX_ND_CAT;
219 return ::cat_ra (*this, ra_arg, dim, add_dim);
219 } 220 }
220 221
221 NDArray 222 NDArray
222 real (const ComplexNDArray& a) 223 real (const ComplexNDArray& a)
223 { 224 {