[svn-r29226] HDFFV-9552: merge in java code.

This commit is contained in:
Allen Byrne
2016-02-28 21:43:00 -05:00
parent a1617b7cdb
commit 63249be0e1
290 changed files with 74248 additions and 46 deletions

View File

@@ -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 ]