| Author |
Comment/Response |
Schreiber
|
09/25/12 10:43am
Hi,
I want to add a new calculated table to an existing hdf5 file.
In genereal it's not a problem, but....
Because of the large amount of data, I dont want it as Integer32, I want it as UnsignedInteger16.
How do I do that?
The general code is:
Export[ExportPath,
{
ParallelTable[
Round[
Data[[i,j,k]] - (Data[[i,j,k]] * Data2[[i,j,1]] + Data2[[i, j, 2]])
]
,
{i,1,Dimensions[Data][[1]],1}, {j,1,Dimensions[Data][[2]],1}, {k,1,Dimensions[Data][[3]],1}
]
}
,
{
"Datasets", {"calculated"}
}
,
"Append" -> True
]
This code just exports a large table in the format of Integer32.
I would be thankful for any idea.
Kind regards
URL: , |
|