When calling saveinr(volume, frame) with a single precision volume (class(volume) == 'single') the function raises the error volume format not supported.
In line 30 of the source code, the datatype of the volume is compared against 'float'. However, neither Octave nor Matlab will return that values for class(volume) since the single precision floating point data types are called single not float.
When calling
saveinr(volume, frame)
with a single precision volume (class(volume) == 'single'
) the function raises the errorvolume format not supported
.In line 30 of the source code, the datatype of the volume is compared against
'float'
. However, neither Octave nor Matlab will return that values forclass(volume)
since the single precision floating point data types are calledsingle
notfloat
.