Open zmichels opened 7 months ago
mtexdata forsterite
p = ebsd.gridify.phase;
with MTEX 5.10.2,
size(p)
returns: ans =
336 732
With 5.11.2, it returns: ans =
245952 1
Hi Zach,
is this still a big issue for you? I can confirm, that ebsd.phase
has changed its shape from M x N
to MN x 1
. Unfortunately, I do not recall why I did this. It is marked as a bug fix. After all you can always do
reshape(ebsd.phase,size(ebsd))
Ralf.
What do you want to do? I want to use code that worked with v5.10.2 with v5.11.2
What data do you have? mtexdata forsterite
What code do you use? I am trying to setup a sliding-window style analysis that works in 5.10.2, but does not work in 5.11.2.
Please provide minimalist code with code in the following form
What result do you get with 5.10.2, the resultant size of variable 'pID' is 243820 x 9
with 5.11.2, the resultant size of variable 'pID' is 2194380 x 1
What result do you expect I expect indexing to work the same such that the size of returned variables matches with previous versions of MTEX