~ubuntu-branches/ubuntu/raring/blitz++/raring

« back to all changes in this revision

Viewing changes to doc/examples/storage.out

  • Committer: Bazaar Package Importer
  • Author(s): Konstantinos Margaritis
  • Date: 2005-02-28 20:25:01 UTC
  • mfrom: (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050228202501-3i4f2sknnprsqfhz
Tags: 1:0.8-4
Added missing build-depends (Closes: #297323)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
A = 3 x 3
 
2
[         1         2         3 
 
3
          4         5         6 
 
4
          7         8         9 ]
 
5
 
 
6
B = 3 x 3
 
7
[         1         2         3 
 
8
          4         5         6 
 
9
          7         8         9 ]
 
10
 
 
11
C = 3 x 3
 
12
[         1         2         3 
 
13
          4         5         6 
 
14
          7         8         9 ]
 
15
 
 
16
Dump of Array<i, 2>:
 
17
ordering_      = 2 [          1         0 ]
 
18
ascendingFlag_ = 2 [          1         1 ]
 
19
base_          = 2 [          0         0 ]
 
20
length_        = 2 [          3         3 ]
 
21
stride_        = 2 [          3         1 ]
 
22
zeroOffset_    = 0
 
23
numElements()  = 9
 
24
isStorageContiguous() = 1
 
25
Dump of Array<i, 2>:
 
26
ordering_      = 2 [          0         1 ]
 
27
ascendingFlag_ = 2 [          1         1 ]
 
28
base_          = 2 [          0         0 ]
 
29
length_        = 2 [          3         3 ]
 
30
stride_        = 2 [          1         3 ]
 
31
zeroOffset_    = 0
 
32
numElements()  = 9
 
33
isStorageContiguous() = 1
 
34
Dump of Array<i, 2>:
 
35
ordering_      = 2 [          0         1 ]
 
36
ascendingFlag_ = 2 [          1         0 ]
 
37
base_          = 2 [          0         0 ]
 
38
length_        = 2 [          3         3 ]
 
39
stride_        = 2 [          1        -3 ]
 
40
zeroOffset_    = 6
 
41
numElements()  = 9
 
42
isStorageContiguous() = 1
 
43
Dump of Array<i, 2>:
 
44
ordering_      = 2 [          1         0 ]
 
45
ascendingFlag_ = 2 [          1         1 ]
 
46
base_          = 2 [          0         0 ]
 
47
length_        = 2 [          3         3 ]
 
48
stride_        = 2 [          3         1 ]
 
49
zeroOffset_    = 0
 
50
numElements()  = 9
 
51
isStorageContiguous() = 1
 
52
D = 3 x 3
 
53
[         3         6         9 
 
54
         12        15        18 
 
55
         21        24        27 ]
 
56