You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
unused_dims =Tuple(idx for (idx, key) inenumerate(keys(dims)) if dims[idx] ==1)
squeezed_data =dropdims(data; dims=unused_dims)
used_axes = [axes[i] for i in1:length(axes) if!(i in unused_dims)]
since I originally considered them superfluous, but there could be circumstances when having that information would actually be beneficial, e.g. for saving (see #30) or for verification.
The text was updated successfully, but these errors were encountered:
Currently, we drop all dimensions that have a length of 1:
OMETIFF.jl/src/loader.jl
Lines 150 to 152 in 4adee1a
since I originally considered them superfluous, but there could be circumstances when having that information would actually be beneficial, e.g. for saving (see #30) or for verification.
The text was updated successfully, but these errors were encountered: