Use of tiled layouts with EBSD.plot command in MTEX 6.0.3 beta #2233
-
Hi Everybody, Does anybody know how to use the tiledlayout command of Matlab with the plot command of EBSD? I am trying to create a mosaic of 6 EBSD graphs, distributed in three groups of an IPF map and a phase map, for three experimental conditions. However, each time I start the figure, the first instance of the plot command erases all the settings I have configured on the tiledlayout command. Kind regards, Gabriel Castro |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
There is multiple ways I think, but I usually use figure;
newMtexFigure('layout',[3 2]);
plot(ebsd1)
nextAxis;
plot(ebsd2)
nextAxis;
etc Best, |
Beta Was this translation helpful? Give feedback.
Hi Gabriel,
actually MTEX
nextAxis
was out before Matlab introducedtiledLayout
. This is the reason both concepts are not really compatible. In a future release of MTEX I surely will drop the MTEX implementation and go with the Matlab one.Currently we can only assist with using
nextAxis
.Ralf.