All FEATool graphics objects have the
HandleVisibility property set to "
off" by default, so as not accidentally effect plotting and working with graphics in the Matlab CLI (otherwise you could easily accidentally close everything and lose all work with a "close all" command for example). So in order to be able to apply graphics functions you have to first find and extract the
graphics object handle, for example:
h_featool_fig = findall( 0, 'Tag', 'featool_gui_main_window' ); % 0 is the handle to the Matlab root object.
h_featool_axes = findall( h_featool_fig, 'Type', 'axes' );
view( h_featool_axes, 0, 180 )