comparison liboctave/boolNDArray.cc @ 9732:b4fdfee405b5

remove ArrayN<T> + fix nonhom. diag-scalar ops
author Jaroslav Hajek <highegg@gmail.com>
date Fri, 16 Oct 2009 13:12:31 +0200
parents 66970dd627f6
children 26abff55f6fe
comparison
equal deleted inserted replaced
9731:7b9cbaad68d6 9732:b4fdfee405b5
148 } 148 }
149 149
150 boolNDArray 150 boolNDArray
151 boolNDArray::diag (octave_idx_type k) const 151 boolNDArray::diag (octave_idx_type k) const
152 { 152 {
153 return ArrayN<bool>::diag (k); 153 return Array<bool>::diag (k);
154 } 154 }
155 155
156 NDND_BOOL_OPS (boolNDArray, boolNDArray) 156 NDND_BOOL_OPS (boolNDArray, boolNDArray)
157 NDND_CMP_OPS (boolNDArray, boolNDArray) 157 NDND_CMP_OPS (boolNDArray, boolNDArray)
158 158