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:

Comments

Popular posts from this blog

How to hold plots in MatLab? - hold -- MatLab

How to check whether point is changed or not in MatLab? - ischange -- MatLab

Data distribution plots in MatLab -- MatLab