The main help page says array dimensions should be specified in Fortran order:
|
cout << "\t-s <x> <y> <z> [...] - Data sizes (3 or more integers); assumed to be in FORTRAN order (first dimension varies fastest)" << endl; |
But when specifying fewer than three dimensions, the documentation says C order:
|
if (d.s.size() < 3) |
|
display_error("Specify 3 or more integer sizes after -s (C memory order)"); |
The main help page says array dimensions should be specified in Fortran order:
tthresh/src/tthresh.hpp
Line 98 in 02df038
But when specifying fewer than three dimensions, the documentation says C order:
tthresh/src/tthresh.cpp
Lines 187 to 188 in 02df038