Mercurial > hg > octave-nkf
comparison liboctave/Array.h @ 4625:87c01a296263
[project @ 2003-11-15 12:51:20 by jwe]
author | jwe |
---|---|
date | Sat, 15 Nov 2003 12:51:20 +0000 |
parents | 3a284f89aa41 |
children | 72c28fd651c4 |
comparison
equal
deleted
inserted
replaced
4624:372fc47d1153 | 4625:87c01a296263 |
---|---|
433 | 433 |
434 public: | 434 public: |
435 | 435 |
436 void resize (int n) { resize_no_fill (n); } | 436 void resize (int n) { resize_no_fill (n); } |
437 | 437 |
438 // void resize (int n, const T& val) { resize_and_fill (n, val); } | 438 void resize (int n, const T& val) { resize_and_fill (n, val); } |
439 | 439 |
440 void resize (const dim_vector& dv) { resize_no_fill (dv); } | 440 void resize (const dim_vector& dv) { resize_no_fill (dv); } |
441 | 441 |
442 void resize (const dim_vector& dv, const T& val) | 442 void resize (const dim_vector& dv, const T& val) |
443 { resize_and_fill (dv, val); } | 443 { resize_and_fill (dv, val); } |