comparison liboctave/intNDArray.h @ 7113:a018c140f8aa

[project @ 2007-11-07 00:28:01 by dbateman]
author dbateman
date Wed, 07 Nov 2007 00:28:01 +0000
parents a1dbe9d80eee
children e8d953d03f6a
comparison
equal deleted inserted replaced
7112:f90a8188c9c2 7113:a018c140f8aa
71 // FIXME -- this is not quite the right thing. 71 // FIXME -- this is not quite the right thing.
72 72
73 boolNDArray all (int dim = -1) const; 73 boolNDArray all (int dim = -1) const;
74 boolNDArray any (int dim = -1) const; 74 boolNDArray any (int dim = -1) const;
75 75
76 intNDArray sum (int dim) const;
77
76 intNDArray squeeze (void) const 78 intNDArray squeeze (void) const
77 { return intNDArray<T> (MArrayN<T>::squeeze ()); } 79 { return intNDArray<T> (MArrayN<T>::squeeze ()); }
78 80
79 intNDArray transpose (void) const 81 intNDArray transpose (void) const
80 { return intNDArray<T> (MArrayN<T>::transpose ()); } 82 { return intNDArray<T> (MArrayN<T>::transpose ()); }