1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
# Created by Octave 2.1.60, Mon Dec 27 12:13:21 2004 CET <hornik@mithrandir>
# name: a_string
# type: string
# elements: 2
# length: 3
foo
# length: 3
bar
# name: a_bool
# type: bool
0
# name: a_struct
# type: struct
# length: 3
# name: a
# type: scalar
1
# name: b
# type: matrix
# rows: 2
# columns: 2
1 2
3 4
# name: c
# type: string
# elements: 1
# length: 3
foo
# name: a_cell
# type: cell
# rows: 2
# columns: 2
# name: <cell-element>
# type: scalar
1
# name: <cell-element>
# type: string
# elements: 1
# length: 3
foo
# name: <cell-element>
# type: matrix
# rows: 2
# columns: 2
1 2
3 4
# name: <cell-element>
# type: string
# elements: 1
# length: 3
bar
# name: a_complex_scalar
# type: complex scalar
(0,1)
# name: a_list
# type: list
# length: 3
# name: _0
# type: scalar
1
# name: _1
# type: matrix
# rows: 2
# columns: 2
1 2
3 4
# name: _2
# type: string
# elements: 1
# length: 3
foo
# name: a_complex_matrix
# type: complex matrix
# rows: 2
# columns: 2
(1,2) (3,-4)
(5,0) (-6,0)
# name: a_range
# type: range
# base, limit, increment
1 5 1
# name: a_scalar
# type: scalar
1
# name: a_complex_3_d_array
# type: complex matrix
# ndims: 3
2 2 2
(1,1)
(3,1)
(2,1)
(4,1)
(5,-1)
(7,-1)
(6,-1)
(8,-1)
# name: a_3_d_array
# type: matrix
# ndims: 3
2 2 2
1
3
2
4
5
7
6
8
# name: a_matrix
# type: matrix
# rows: 2
# columns: 2
1 2
3 4
# name: a_bool_matrix
# type: bool matrix
# rows: 2
# columns: 2
1 0
0 1
|