Using a fucntion in loop
    1 vue (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
I defined this;
P = [1 -2 4]
I want to find nth derivative of this poly and I want to do it with while loop for example I try this;
a = 0;
n = 3;
while(a < n)
polyder(P)
a=a+1;
end
The result is 
ans =
     2    -2
ans =
     2    -2
ans =
     2    -2
Why does the program take derivative of the poly at first but it does not for the rest of it?
0 commentaires
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Loops and Conditional Statements 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!

