tkdiff wrote
2. I'm aware I can export the model to Matlab and control axis display from there, and have done that, but it would be nice to be able to do something in your app as well, in 1D as you say. The options only constrain the data displayed, and don't change the axes, which is what I'm seeking. Not a high priority, but would be nice.
Thank you for elaboraing on your suggestions, regading the axis although not as convenient as built-in buttons, if you really want to change the GUI axis there is another workaround by extracting and directly manipulation the corresponding Matlab graphics handles, for example (assuming you have the FEATool GUI up with a plot)
h_ax = findall(0,'type','axes');
set( h_ax, 'XScale', 'log', 'YScale', 'log' ) % Set log-log scale.
xmin = 0; xmax = 1; ymin = 0; ymax = 1;
axis( h_ax, [xmin xmax ymin ymax] ) % Set axis limits.