comparison liboctave/CNDArray.h @ 4569:01e4957409a4

[project @ 2003-10-30 05:48:17 by jwe]
author jwe
date Thu, 30 Oct 2003 05:48:17 +0000
parents 773a21e4fce8
children f7697d703481
comparison
equal deleted inserted replaced
4568:03c053808a7c 4569:01e4957409a4
75 // XXX FIXME XXX -- this is not quite the right thing. 75 // XXX FIXME XXX -- this is not quite the right thing.
76 76
77 boolNDArray all (int dim = -1) const; 77 boolNDArray all (int dim = -1) const;
78 boolNDArray any (int dim = -1) const; 78 boolNDArray any (int dim = -1) const;
79 79
80 ComplexMatrix cumprod (int dim = -1) const;
81 ComplexMatrix cumsum (int dim = -1) const;
82 ComplexNDArray prod (int dim = -1) const;
83 ComplexNDArray sum (int dim = -1) const;
84 ComplexNDArray sumsq (int dim = -1) const;
85
86 Matrix abs (void) const;
87
80 ComplexMatrix matrix_value (void) const; 88 ComplexMatrix matrix_value (void) const;
81 89
82 ComplexNDArray squeeze (void) const { return ArrayN<Complex>::squeeze (); } 90 ComplexNDArray squeeze (void) const { return ArrayN<Complex>::squeeze (); }
83 91
84 static void increment_index (Array<int>& ra_idx, 92 static void increment_index (Array<int>& ra_idx,