Mercurial > hg > octave-max
comparison src/Cell.h @ 4563:742993a501b9
[project @ 2003-10-29 06:25:12 by jwe]
author | jwe |
---|---|
date | Wed, 29 Oct 2003 06:25:12 +0000 |
parents | 820323598f4f |
children | fc30061d01da |
comparison
equal
deleted
inserted
replaced
4562:4699bdb4c362 | 4563:742993a501b9 |
---|---|
53 elem (i) = ovl (i); | 53 elem (i) = ovl (i); |
54 } | 54 } |
55 | 55 |
56 Cell (int n, int m, const octave_value& val = resize_fill_value ()) | 56 Cell (int n, int m, const octave_value& val = resize_fill_value ()) |
57 : ArrayN<octave_value> (dim_vector (n, m), val) { } | 57 : ArrayN<octave_value> (dim_vector (n, m), val) { } |
58 | |
59 Cell (const dim_vector& dims, const octave_value& val = resize_fill_value ()) | |
60 : ArrayN<octave_value> (dims, val) { } | |
58 | 61 |
59 Cell (const ArrayN<octave_value>& c) | 62 Cell (const ArrayN<octave_value>& c) |
60 : ArrayN<octave_value> (c) { } | 63 : ArrayN<octave_value> (c) { } |
61 | 64 |
62 Cell (const Array<octave_value>& c, int nr, int nc) | 65 Cell (const Array<octave_value>& c, int nr, int nc) |