summaryrefslogtreecommitdiffstats
path: root/HDF5Examples/JAVA/H5D/tfiles/110/H5Ex_D_Transform.txt
diff options
context:
space:
mode:
Diffstat (limited to 'HDF5Examples/JAVA/H5D/tfiles/110/H5Ex_D_Transform.txt')
-rw-r--r--HDF5Examples/JAVA/H5D/tfiles/110/H5Ex_D_Transform.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/HDF5Examples/JAVA/H5D/tfiles/110/H5Ex_D_Transform.txt b/HDF5Examples/JAVA/H5D/tfiles/110/H5Ex_D_Transform.txt
new file mode 100644
index 0000000..05257bc
--- /dev/null
+++ b/HDF5Examples/JAVA/H5D/tfiles/110/H5Ex_D_Transform.txt
@@ -0,0 +1,15 @@
+Original Data:
+ [ 0 -1 -2 -3 -4 -5 -6 ]
+ [ 0 0 0 0 0 0 0 ]
+ [ 0 1 2 3 4 5 6 ]
+ [ 0 2 4 6 8 10 12 ]
+Data as written with transform 'x+1'
+ [ 1 0 -1 -2 -3 -4 -5 ]
+ [ 1 1 1 1 1 1 1 ]
+ [ 1 2 3 4 5 6 7 ]
+ [ 1 3 5 7 9 11 13 ]
+Data as written with transform 'x+1' and read with transform 'x-1'
+ [ 0 -1 -2 -3 -4 -5 -6 ]
+ [ 0 0 0 0 0 0 0 ]
+ [ 0 1 2 3 4 5 6 ]
+ [ 0 2 4 6 8 10 12 ]