i want to plot 4 plots using ginput
Afficher commentaires plus anciens
clear all;
close all;
for k=1:4
axis([0,10,0,10]);
data = ginput(4);
x = data(:,1);
y = data(:,2);
plot(x,y,'r','LineWidth',1);
axis([0,10,0,10]);
end
this code doesnot plot 4 graphs at the same time.it is getting removed after 1st iteration.please help me to draw 4 plots in a single graph uing ginput
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Data Exploration dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!