Plotting the case of iteration
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Najiya Omar
le 22 Jan 2018
Réponse apportée : Najiya Omar
le 23 Jan 2018
in the code below I want to see the plot has the names of all the cases of "0.1 to 1" each line indicates case; feature (0.1), feature (0.2) and so on till feature (1.0).
L =0.1:0.1:1.0;
tot=numel(L);
for i=1:tot
plot(x+i,y+i,'Color');
nam{i} = sprintf('feaures (%d)',i);
0 commentaires
Réponse acceptée
Birdman
le 22 Jan 2018
L =0.1:0.1:1.0;
tot=numel(L);
hold on;
for i=1:tot
plot(x+i,y+i,'Color');
nam{i} = sprintf('feaures (%d)',i);
end
Plus de réponses (1)
Najiya Omar
le 23 Jan 2018
If I want to skip some cases like 0.3, 0.7 in the loop iteration and to be plotted
0 commentaires
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!