Mercurial > hg > octave-nkf
comparison liboctave/dNDArray.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 |
---|---|
73 // XXX FIXME XXX -- this is not quite the right thing. | 73 // XXX FIXME XXX -- this is not quite the right thing. |
74 | 74 |
75 boolNDArray all (int dim = -1) const; | 75 boolNDArray all (int dim = -1) const; |
76 boolNDArray any (int dim = -1) const; | 76 boolNDArray any (int dim = -1) const; |
77 | 77 |
78 Matrix cumprod (int dim = -1) const; | |
79 Matrix cumsum (int dim = -1) const; | |
80 NDArray prod (int dim = -1) const; | |
81 NDArray sum (int dim = -1) const; | |
82 NDArray sumsq (int dim = -1) const; | |
83 | |
84 Matrix abs (void) const; | |
85 | |
78 Matrix matrix_value (void) const; | 86 Matrix matrix_value (void) const; |
79 | 87 |
80 NDArray squeeze (void) const { return ArrayN<double>::squeeze (); } | 88 NDArray squeeze (void) const { return ArrayN<double>::squeeze (); } |
81 | 89 |
82 static void increment_index (Array<int>& ra_idx, | 90 static void increment_index (Array<int>& ra_idx, |