summaryrefslogtreecommitdiffstats
path: root/systemtest/testdata/complex
diff options
context:
space:
mode:
Diffstat (limited to 'systemtest/testdata/complex')
-rw-r--r--systemtest/testdata/complex/complex01.ql1
-rw-r--r--systemtest/testdata/complex/complex01.ql.java.out4
-rw-r--r--systemtest/testdata/complex/complex01.ql.out5
-rw-r--r--systemtest/testdata/complex/complex02.ql1
-rw-r--r--systemtest/testdata/complex/complex02.ql.java.out4
-rw-r--r--systemtest/testdata/complex/complex02.ql.out5
-rw-r--r--systemtest/testdata/complex/complex03.ql1
-rw-r--r--systemtest/testdata/complex/complex03.ql.java.out4
-rw-r--r--systemtest/testdata/complex/complex03.ql.out5
-rw-r--r--systemtest/testdata/complex/complex04.ql1
-rw-r--r--systemtest/testdata/complex/complex04.ql.java.out4
-rw-r--r--systemtest/testdata/complex/complex04.ql.out5
-rw-r--r--systemtest/testdata/complex/complex05.ql1
-rw-r--r--systemtest/testdata/complex/complex05.ql.java.out4
-rw-r--r--systemtest/testdata/complex/complex05.ql.out5
-rw-r--r--systemtest/testdata/complex/complex06.ql1
-rw-r--r--systemtest/testdata/complex/complex06.ql.java.out4
-rw-r--r--systemtest/testdata/complex/complex06.ql.out5
-rw-r--r--systemtest/testdata/complex/complex07.ql1
-rw-r--r--systemtest/testdata/complex/complex07.ql.java.out4
-rw-r--r--systemtest/testdata/complex/complex07.ql.out5
-rw-r--r--systemtest/testdata/complex/complex08.ql1
-rw-r--r--systemtest/testdata/complex/complex08.ql.java.out4
-rw-r--r--systemtest/testdata/complex/complex08.ql.out5
-rw-r--r--systemtest/testdata/complex/complex09.ql1
-rw-r--r--systemtest/testdata/complex/complex09.ql.java.out4
-rw-r--r--systemtest/testdata/complex/complex09.ql.out5
-rw-r--r--systemtest/testdata/complex/complex10.ql1
-rw-r--r--systemtest/testdata/complex/complex10.ql.java.out4
-rw-r--r--systemtest/testdata/complex/complex10.ql.out5
-rw-r--r--systemtest/testdata/complex/complex11.ql1
-rw-r--r--systemtest/testdata/complex/complex11.ql.java.out4
-rw-r--r--systemtest/testdata/complex/complex11.ql.out5
-rw-r--r--systemtest/testdata/complex/complex12.ql1
-rw-r--r--systemtest/testdata/complex/complex12.ql.java.out4
-rw-r--r--systemtest/testdata/complex/complex12.ql.out5
-rw-r--r--systemtest/testdata/complex/complex13.ql1
-rw-r--r--systemtest/testdata/complex/complex13.ql.java.out2
-rw-r--r--systemtest/testdata/complex/complex13.ql.out24
-rw-r--r--systemtest/testdata/complex/complex14.ql1
-rw-r--r--systemtest/testdata/complex/complex14.ql.java.out2
-rw-r--r--systemtest/testdata/complex/complex14.ql.out24
42 files changed, 174 insertions, 0 deletions
diff --git a/systemtest/testdata/complex/complex01.ql b/systemtest/testdata/complex/complex01.ql
new file mode 100644
index 0000000..25c08c5
--- /dev/null
+++ b/systemtest/testdata/complex/complex01.ql
@@ -0,0 +1 @@
+select complex(3.14, 10f) from ImgCharD -- complex1(3.14, 10) \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex01.ql.java.out b/systemtest/testdata/complex/complex01.ql.java.out
new file mode 100644
index 0000000..b4dc813
--- /dev/null
+++ b/systemtest/testdata/complex/complex01.ql.java.out
@@ -0,0 +1,4 @@
+
+ RasRuntimeException: Exception: Base type typeName:
+ typeID: 0
+ as RasCollectionType is not supported yet. \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex01.ql.out b/systemtest/testdata/complex/complex01.ql.out
new file mode 100644
index 0000000..37568f5
--- /dev/null
+++ b/systemtest/testdata/complex/complex01.ql.out
@@ -0,0 +1,5 @@
+-- Testbed line: result_type=set<complex>
+-- Testbed line: result_elements=1
+-- Testbed start block:
+Element 1: (3.14, 10)
+-- Testbed end block:
diff --git a/systemtest/testdata/complex/complex02.ql b/systemtest/testdata/complex/complex02.ql
new file mode 100644
index 0000000..5c62493
--- /dev/null
+++ b/systemtest/testdata/complex/complex02.ql
@@ -0,0 +1 @@
+select complex(3.14, 6.28f) + complex(100f, 200f) from ImgCharD -- complex1(103.14, 206.28) \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex02.ql.java.out b/systemtest/testdata/complex/complex02.ql.java.out
new file mode 100644
index 0000000..b4dc813
--- /dev/null
+++ b/systemtest/testdata/complex/complex02.ql.java.out
@@ -0,0 +1,4 @@
+
+ RasRuntimeException: Exception: Base type typeName:
+ typeID: 0
+ as RasCollectionType is not supported yet. \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex02.ql.out b/systemtest/testdata/complex/complex02.ql.out
new file mode 100644
index 0000000..a0487fd
--- /dev/null
+++ b/systemtest/testdata/complex/complex02.ql.out
@@ -0,0 +1,5 @@
+-- Testbed line: result_type=set<complex>
+-- Testbed line: result_elements=1
+-- Testbed start block:
+Element 1: (103.14, 206.28)
+-- Testbed end block:
diff --git a/systemtest/testdata/complex/complex03.ql b/systemtest/testdata/complex/complex03.ql
new file mode 100644
index 0000000..1f6c2d1
--- /dev/null
+++ b/systemtest/testdata/complex/complex03.ql
@@ -0,0 +1 @@
+select complex(3.14, 6.28f) - complex(100f, 200f) from ImgCharD -- complex1(-96.86, 193.72) \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex03.ql.java.out b/systemtest/testdata/complex/complex03.ql.java.out
new file mode 100644
index 0000000..b4dc813
--- /dev/null
+++ b/systemtest/testdata/complex/complex03.ql.java.out
@@ -0,0 +1,4 @@
+
+ RasRuntimeException: Exception: Base type typeName:
+ typeID: 0
+ as RasCollectionType is not supported yet. \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex03.ql.out b/systemtest/testdata/complex/complex03.ql.out
new file mode 100644
index 0000000..b477fe1
--- /dev/null
+++ b/systemtest/testdata/complex/complex03.ql.out
@@ -0,0 +1,5 @@
+-- Testbed line: result_type=set<complex>
+-- Testbed line: result_elements=1
+-- Testbed start block:
+Element 1: (-96.86, -193.72)
+-- Testbed end block:
diff --git a/systemtest/testdata/complex/complex04.ql b/systemtest/testdata/complex/complex04.ql
new file mode 100644
index 0000000..fa94e91
--- /dev/null
+++ b/systemtest/testdata/complex/complex04.ql
@@ -0,0 +1 @@
+select complex(10f, 20f) * complex(3.0, 4.0) from ImgCharD -- complex1(-50, 100) \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex04.ql.java.out b/systemtest/testdata/complex/complex04.ql.java.out
new file mode 100644
index 0000000..b4dc813
--- /dev/null
+++ b/systemtest/testdata/complex/complex04.ql.java.out
@@ -0,0 +1,4 @@
+
+ RasRuntimeException: Exception: Base type typeName:
+ typeID: 0
+ as RasCollectionType is not supported yet. \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex04.ql.out b/systemtest/testdata/complex/complex04.ql.out
new file mode 100644
index 0000000..d0407b2
--- /dev/null
+++ b/systemtest/testdata/complex/complex04.ql.out
@@ -0,0 +1,5 @@
+-- Testbed line: result_type=set<complex>
+-- Testbed line: result_elements=1
+-- Testbed start block:
+Element 1: (-50, 100)
+-- Testbed end block:
diff --git a/systemtest/testdata/complex/complex05.ql b/systemtest/testdata/complex/complex05.ql
new file mode 100644
index 0000000..9c6cab9
--- /dev/null
+++ b/systemtest/testdata/complex/complex05.ql
@@ -0,0 +1 @@
+select complex(10f, 20f) / complex(1.0, 2.0) from ImgCharD -- complex1(10, 0) \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex05.ql.java.out b/systemtest/testdata/complex/complex05.ql.java.out
new file mode 100644
index 0000000..b4dc813
--- /dev/null
+++ b/systemtest/testdata/complex/complex05.ql.java.out
@@ -0,0 +1,4 @@
+
+ RasRuntimeException: Exception: Base type typeName:
+ typeID: 0
+ as RasCollectionType is not supported yet. \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex05.ql.out b/systemtest/testdata/complex/complex05.ql.out
new file mode 100644
index 0000000..ddd98e6
--- /dev/null
+++ b/systemtest/testdata/complex/complex05.ql.out
@@ -0,0 +1,5 @@
+-- Testbed line: result_type=set<complex>
+-- Testbed line: result_elements=1
+-- Testbed start block:
+Element 1: (10, 0)
+-- Testbed end block:
diff --git a/systemtest/testdata/complex/complex06.ql b/systemtest/testdata/complex/complex06.ql
new file mode 100644
index 0000000..9f510c6
--- /dev/null
+++ b/systemtest/testdata/complex/complex06.ql
@@ -0,0 +1 @@
+select complex(3.14d, 6.28d) + complex(100d, 200d) from ImgCharD -- complex2(103.14, 206.28) \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex06.ql.java.out b/systemtest/testdata/complex/complex06.ql.java.out
new file mode 100644
index 0000000..b4dc813
--- /dev/null
+++ b/systemtest/testdata/complex/complex06.ql.java.out
@@ -0,0 +1,4 @@
+
+ RasRuntimeException: Exception: Base type typeName:
+ typeID: 0
+ as RasCollectionType is not supported yet. \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex06.ql.out b/systemtest/testdata/complex/complex06.ql.out
new file mode 100644
index 0000000..c9357dc
--- /dev/null
+++ b/systemtest/testdata/complex/complex06.ql.out
@@ -0,0 +1,5 @@
+-- Testbed line: result_type=set<complexd>
+-- Testbed line: result_elements=1
+-- Testbed start block:
+Element 1: (103.14, 206.28)
+-- Testbed end block:
diff --git a/systemtest/testdata/complex/complex07.ql b/systemtest/testdata/complex/complex07.ql
new file mode 100644
index 0000000..27e9b54
--- /dev/null
+++ b/systemtest/testdata/complex/complex07.ql
@@ -0,0 +1 @@
+select complex(3.14d, 6.28d) - complex(100d, 200d) from ImgCharD -- complex2(-96.86, 193.72) \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex07.ql.java.out b/systemtest/testdata/complex/complex07.ql.java.out
new file mode 100644
index 0000000..b4dc813
--- /dev/null
+++ b/systemtest/testdata/complex/complex07.ql.java.out
@@ -0,0 +1,4 @@
+
+ RasRuntimeException: Exception: Base type typeName:
+ typeID: 0
+ as RasCollectionType is not supported yet. \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex07.ql.out b/systemtest/testdata/complex/complex07.ql.out
new file mode 100644
index 0000000..e5b41ab
--- /dev/null
+++ b/systemtest/testdata/complex/complex07.ql.out
@@ -0,0 +1,5 @@
+-- Testbed line: result_type=set<complexd>
+-- Testbed line: result_elements=1
+-- Testbed start block:
+Element 1: (-96.86, -193.72)
+-- Testbed end block:
diff --git a/systemtest/testdata/complex/complex08.ql b/systemtest/testdata/complex/complex08.ql
new file mode 100644
index 0000000..3b89fae
--- /dev/null
+++ b/systemtest/testdata/complex/complex08.ql
@@ -0,0 +1 @@
+select complex(10d, 20d) * complex(3.0d, 4.0d) from ImgCharD -- complex2(-50, 100) \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex08.ql.java.out b/systemtest/testdata/complex/complex08.ql.java.out
new file mode 100644
index 0000000..b4dc813
--- /dev/null
+++ b/systemtest/testdata/complex/complex08.ql.java.out
@@ -0,0 +1,4 @@
+
+ RasRuntimeException: Exception: Base type typeName:
+ typeID: 0
+ as RasCollectionType is not supported yet. \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex08.ql.out b/systemtest/testdata/complex/complex08.ql.out
new file mode 100644
index 0000000..2575c9f
--- /dev/null
+++ b/systemtest/testdata/complex/complex08.ql.out
@@ -0,0 +1,5 @@
+-- Testbed line: result_type=set<complexd>
+-- Testbed line: result_elements=1
+-- Testbed start block:
+Element 1: (-50, 100)
+-- Testbed end block:
diff --git a/systemtest/testdata/complex/complex09.ql b/systemtest/testdata/complex/complex09.ql
new file mode 100644
index 0000000..847815a
--- /dev/null
+++ b/systemtest/testdata/complex/complex09.ql
@@ -0,0 +1 @@
+select complex(10d, 20d) / complex(1.0d, 2.0d) from ImgCharD -- complex2(10, 0) \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex09.ql.java.out b/systemtest/testdata/complex/complex09.ql.java.out
new file mode 100644
index 0000000..b4dc813
--- /dev/null
+++ b/systemtest/testdata/complex/complex09.ql.java.out
@@ -0,0 +1,4 @@
+
+ RasRuntimeException: Exception: Base type typeName:
+ typeID: 0
+ as RasCollectionType is not supported yet. \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex09.ql.out b/systemtest/testdata/complex/complex09.ql.out
new file mode 100644
index 0000000..a277bd1
--- /dev/null
+++ b/systemtest/testdata/complex/complex09.ql.out
@@ -0,0 +1,5 @@
+-- Testbed line: result_type=set<complexd>
+-- Testbed line: result_elements=1
+-- Testbed start block:
+Element 1: (10, 0)
+-- Testbed end block:
diff --git a/systemtest/testdata/complex/complex10.ql b/systemtest/testdata/complex/complex10.ql
new file mode 100644
index 0000000..811e04e
--- /dev/null
+++ b/systemtest/testdata/complex/complex10.ql
@@ -0,0 +1 @@
+select complex(10f, 20f) / complex(1.0d, 2.0d) from ImgCharD -- complex2(10, 0) \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex10.ql.java.out b/systemtest/testdata/complex/complex10.ql.java.out
new file mode 100644
index 0000000..b4dc813
--- /dev/null
+++ b/systemtest/testdata/complex/complex10.ql.java.out
@@ -0,0 +1,4 @@
+
+ RasRuntimeException: Exception: Base type typeName:
+ typeID: 0
+ as RasCollectionType is not supported yet. \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex10.ql.out b/systemtest/testdata/complex/complex10.ql.out
new file mode 100644
index 0000000..a277bd1
--- /dev/null
+++ b/systemtest/testdata/complex/complex10.ql.out
@@ -0,0 +1,5 @@
+-- Testbed line: result_type=set<complexd>
+-- Testbed line: result_elements=1
+-- Testbed start block:
+Element 1: (10, 0)
+-- Testbed end block:
diff --git a/systemtest/testdata/complex/complex11.ql b/systemtest/testdata/complex/complex11.ql
new file mode 100644
index 0000000..a9557b2
--- /dev/null
+++ b/systemtest/testdata/complex/complex11.ql
@@ -0,0 +1 @@
+select 10.0 / complex(1.0d, 2.0d) from ImgCharD -- complex2(2, -4) \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex11.ql.java.out b/systemtest/testdata/complex/complex11.ql.java.out
new file mode 100644
index 0000000..b4dc813
--- /dev/null
+++ b/systemtest/testdata/complex/complex11.ql.java.out
@@ -0,0 +1,4 @@
+
+ RasRuntimeException: Exception: Base type typeName:
+ typeID: 0
+ as RasCollectionType is not supported yet. \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex11.ql.out b/systemtest/testdata/complex/complex11.ql.out
new file mode 100644
index 0000000..428b61b
--- /dev/null
+++ b/systemtest/testdata/complex/complex11.ql.out
@@ -0,0 +1,5 @@
+-- Testbed line: result_type=set<complexd>
+-- Testbed line: result_elements=1
+-- Testbed start block:
+Element 1: (2, -4)
+-- Testbed end block:
diff --git a/systemtest/testdata/complex/complex12.ql b/systemtest/testdata/complex/complex12.ql
new file mode 100644
index 0000000..8a2166f
--- /dev/null
+++ b/systemtest/testdata/complex/complex12.ql
@@ -0,0 +1 @@
+select complex(10.0d, 20.0d) / 5 from ImgCharD -- complex2(2.0, 4.0) \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex12.ql.java.out b/systemtest/testdata/complex/complex12.ql.java.out
new file mode 100644
index 0000000..b4dc813
--- /dev/null
+++ b/systemtest/testdata/complex/complex12.ql.java.out
@@ -0,0 +1,4 @@
+
+ RasRuntimeException: Exception: Base type typeName:
+ typeID: 0
+ as RasCollectionType is not supported yet. \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex12.ql.out b/systemtest/testdata/complex/complex12.ql.out
new file mode 100644
index 0000000..0fed385
--- /dev/null
+++ b/systemtest/testdata/complex/complex12.ql.out
@@ -0,0 +1,5 @@
+-- Testbed line: result_type=set<complexd>
+-- Testbed line: result_elements=1
+-- Testbed start block:
+Element 1: (2, 4)
+-- Testbed end block:
diff --git a/systemtest/testdata/complex/complex13.ql b/systemtest/testdata/complex/complex13.ql
new file mode 100644
index 0000000..44ea5f5
--- /dev/null
+++ b/systemtest/testdata/complex/complex13.ql
@@ -0,0 +1 @@
+select a * complex(3.14, 6.28) from ImgCharD as a -- marray<complex1> \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex13.ql.java.out b/systemtest/testdata/complex/complex13.ql.java.out
new file mode 100644
index 0000000..b749f3e
--- /dev/null
+++ b/systemtest/testdata/complex/complex13.ql.java.out
@@ -0,0 +1,2 @@
+
+ RasRuntimeException: Exception: RasType complex is unknown. \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex13.ql.out b/systemtest/testdata/complex/complex13.ql.out
new file mode 100644
index 0000000..a70bec9
--- /dev/null
+++ b/systemtest/testdata/complex/complex13.ql.out
@@ -0,0 +1,24 @@
+-- Testbed line: result_type=set <marray <complex, [0:10,0:10]>>
+-- Testbed line: result_elements=1
+-- Testbed start block:
+Image 1
+GMarray
+ Type Structure........: marray <complex, [0:10,0:10]>
+ Type Schema...........: marray< complex(float, float) >
+ Domain................: [0:10,0:10]
+ Base Type Schema......: complex(float, float)
+ Base Type Length......: 8
+ Data format.......... : Array
+ Data size (bytes).... : 968
+(0, 0) (3.14, 6.28) (6.28, 12.56) (9.42, 18.84) (12.56, 25.12) (15.7, 31.4) (18.84, 37.68) (21.98, 43.96) (25.12, 50.24) (28.26, 56.52) (31.4, 62.8)
+(34.54, 69.08) (37.68, 75.36) (40.82, 81.64) (43.96, 87.92) (47.1, 94.2) (50.24, 100.48) (53.38, 106.76) (56.52, 113.04) (59.66, 119.32) (62.8, 125.6) (65.94, 131.88)
+(69.08, 138.16) (72.22, 144.44) (75.36, 150.72) (78.5, 157) (81.64, 163.28) (84.78, 169.56) (87.92, 175.84) (91.06, 182.12) (94.2, 188.4) (97.34, 194.68) (100.48, 200.96)
+(103.62, 207.24) (106.76, 213.52) (109.9, 219.8) (113.04, 226.08) (116.18, 232.36) (119.32, 238.64) (122.46, 244.92) (125.6, 251.2) (128.74, 257.48) (131.88, 263.76) (135.02, 270.04)
+(138.16, 276.32) (141.3, 282.6) (144.44, 288.88) (147.58, 295.16) (150.72, 301.44) (153.86, 307.72) (157, 314) (160.14, 320.28) (163.28, 326.56) (166.42, 332.84) (169.56, 339.12)
+(172.7, 345.4) (175.84, 351.68) (178.98, 357.96) (182.12, 364.24) (185.26, 370.52) (188.4, 376.8) (191.54, 383.08) (194.68, 389.36) (197.82, 395.64) (200.96, 401.92) (204.1, 408.2)
+(207.24, 414.48) (210.38, 420.76) (213.52, 427.04) (216.66, 433.32) (219.8, 439.6) (222.94, 445.88) (226.08, 452.16) (229.22, 458.44) (232.36, 464.72) (235.5, 471) (238.64, 477.28)
+(241.78, 483.56) (244.92, 489.84) (248.06, 496.12) (251.2, 502.4) (254.34, 508.68) (257.48, 514.96) (260.62, 521.24) (263.76, 527.52) (266.9, 533.8) (270.04, 540.08) (273.18, 546.36)
+(276.32, 552.64) (279.46, 558.92) (282.6, 565.2) (285.74, 571.48) (288.88, 577.76) (292.02, 584.04) (295.16, 590.32) (298.3, 596.6) (301.44, 602.88) (304.58, 609.16) (307.72, 615.44)
+(310.86, 621.72) (314, 628) (317.14, 634.28) (320.28, 640.56) (323.42, 646.84) (326.56, 653.12) (329.7, 659.4) (332.84, 665.68) (335.98, 671.96) (339.12, 678.24) (342.26, 684.52)
+(345.4, 690.8) (348.54, 697.08) (351.68, 703.36) (354.82, 709.64) (357.96, 715.92) (361.1, 722.2) (364.24, 728.48) (367.38, 734.76) (370.52, 741.04) (373.66, 747.32) (376.8, 753.6)
+-- Testbed end block:
diff --git a/systemtest/testdata/complex/complex14.ql b/systemtest/testdata/complex/complex14.ql
new file mode 100644
index 0000000..676b136
--- /dev/null
+++ b/systemtest/testdata/complex/complex14.ql
@@ -0,0 +1 @@
+select a * complex(3.14d, 6.28d) from ImgCharD as a -- marray<complex2> \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex14.ql.java.out b/systemtest/testdata/complex/complex14.ql.java.out
new file mode 100644
index 0000000..5bd62a4
--- /dev/null
+++ b/systemtest/testdata/complex/complex14.ql.java.out
@@ -0,0 +1,2 @@
+
+ RasRuntimeException: Exception: RasType complexd is unknown. \ No newline at end of file
diff --git a/systemtest/testdata/complex/complex14.ql.out b/systemtest/testdata/complex/complex14.ql.out
new file mode 100644
index 0000000..af48217
--- /dev/null
+++ b/systemtest/testdata/complex/complex14.ql.out
@@ -0,0 +1,24 @@
+-- Testbed line: result_type=set <marray <complexd, [0:10,0:10]>>
+-- Testbed line: result_elements=1
+-- Testbed start block:
+Image 1
+GMarray
+ Type Structure........: marray <complexd, [0:10,0:10]>
+ Type Schema...........: marray< complex(double, double) >
+ Domain................: [0:10,0:10]
+ Base Type Schema......: complex(double, double)
+ Base Type Length......: 16
+ Data format.......... : Array
+ Data size (bytes).... : 1936
+(0, 0) (3.14, 6.28) (6.28, 12.56) (9.42, 18.84) (12.56, 25.12) (15.7, 31.4) (18.84, 37.68) (21.98, 43.96) (25.12, 50.24) (28.26, 56.52) (31.4, 62.8)
+(34.54, 69.08) (37.68, 75.36) (40.82, 81.64) (43.96, 87.92) (47.1, 94.2) (50.24, 100.48) (53.38, 106.76) (56.52, 113.04) (59.66, 119.32) (62.8, 125.6) (65.94, 131.88)
+(69.08, 138.16) (72.22, 144.44) (75.36, 150.72) (78.5, 157) (81.64, 163.28) (84.78, 169.56) (87.92, 175.84) (91.06, 182.12) (94.2, 188.4) (97.34, 194.68) (100.48, 200.96)
+(103.62, 207.24) (106.76, 213.52) (109.9, 219.8) (113.04, 226.08) (116.18, 232.36) (119.32, 238.64) (122.46, 244.92) (125.6, 251.2) (128.74, 257.48) (131.88, 263.76) (135.02, 270.04)
+(138.16, 276.32) (141.3, 282.6) (144.44, 288.88) (147.58, 295.16) (150.72, 301.44) (153.86, 307.72) (157, 314) (160.14, 320.28) (163.28, 326.56) (166.42, 332.84) (169.56, 339.12)
+(172.7, 345.4) (175.84, 351.68) (178.98, 357.96) (182.12, 364.24) (185.26, 370.52) (188.4, 376.8) (191.54, 383.08) (194.68, 389.36) (197.82, 395.64) (200.96, 401.92) (204.1, 408.2)
+(207.24, 414.48) (210.38, 420.76) (213.52, 427.04) (216.66, 433.32) (219.8, 439.6) (222.94, 445.88) (226.08, 452.16) (229.22, 458.44) (232.36, 464.72) (235.5, 471) (238.64, 477.28)
+(241.78, 483.56) (244.92, 489.84) (248.06, 496.12) (251.2, 502.4) (254.34, 508.68) (257.48, 514.96) (260.62, 521.24) (263.76, 527.52) (266.9, 533.8) (270.04, 540.08) (273.18, 546.36)
+(276.32, 552.64) (279.46, 558.92) (282.6, 565.2) (285.74, 571.48) (288.88, 577.76) (292.02, 584.04) (295.16, 590.32) (298.3, 596.6) (301.44, 602.88) (304.58, 609.16) (307.72, 615.44)
+(310.86, 621.72) (314, 628) (317.14, 634.28) (320.28, 640.56) (323.42, 646.84) (326.56, 653.12) (329.7, 659.4) (332.84, 665.68) (335.98, 671.96) (339.12, 678.24) (342.26, 684.52)
+(345.4, 690.8) (348.54, 697.08) (351.68, 703.36) (354.82, 709.64) (357.96, 715.92) (361.1, 722.2) (364.24, 728.48) (367.38, 734.76) (370.52, 741.04) (373.66, 747.32) (376.8, 753.6)
+-- Testbed end block: