Posts

Showing posts with the label figure

How to close figure in MatLab? - close -- MatLab

 How to close figure in MatLab? - close -- MatLab close command How to close current figure? close; How to close all figure? close all; or close('all'); source: Close one or more figures - MATLAB close (mathworks.com)

How to create new figure ( window for plotting ) in MatLab? - figure -- MatLab

 How to create new figure ( window for plotting ) in MatLab? - figure -- MatLab figure command it take a key-value pair arguments. So number of input argument can only be even (0 , 2 , 4 ,...). How to create new empty figure? f=figure; How to create new figure empty figure and set its  Name as 'Measured Data'? figure( 'Name' , 'Measured Data' ); How to create new figure empty figure and set it as figure f1? f2=figure(f1); source: Create figure window - MATLAB figure (mathworks.com)