How to save and plot in same figure data from the loop iteration ?
    2 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    Fabrice shao
 le 23 Oct 2018
  
    
    
    
    
    Commenté : Fabrice shao
 le 23 Oct 2018
            I have this function: I need to plot loop iteration of gama value in the same figure at the end gama= [1.20,2.90,3.1,4.4,5.3] for gama= %all in the same figure end please need help
0 commentaires
Réponse acceptée
  KALYAN ACHARJYA
      
      
 le 23 Oct 2018
        
      Modifié(e) : KALYAN ACHARJYA
      
      
 le 23 Oct 2018
  
      for i=1:number_of_iterations
%Do operations
plot();
hold on;
end
In your case
gama=[1.20,2.90,3.1,4.4,5.3];
for i=1:length(gama)
gama=gama(i);
%do operations
Plot();
hold on;
end
3 commentaires
  KALYAN ACHARJYA
      
      
 le 23 Oct 2018
				
      Modifié(e) : KALYAN ACHARJYA
      
      
 le 23 Oct 2018
  
			Can you provide the code in the proper format (use {} in text format section), so that it can easily readable?
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Legend 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!

