I’ve got a surfc plot, similar to this:

I want to manually set a custom viewpoint by panning and zooming with the MATLAB toolbar. After the suitable perspective is found, is it possible to store this viewpoint and apply it on other, similar plots? I want to create a plotsequence and therefore need a constant axis layout/ perspective.
With the
viewcommand, you can query and set the current perspective, and with thexlim,ylim, andzlimcommand, you can query and set the current zoom.For example
Alternatively, you can modify the
XData,YData,ZDataand possiblyCDataproperties of your plot objects when you are updating plots in a sequence. This will be faster than recreating the figure, axes, and objects at each iteration.