How do I plot the number of iterations of a function using Semilogx?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have no clue how to do this
0 commentaires
Réponses (1)
Walter Roberson
le 1 Oct 2013
Modifié(e) : Walter Roberson
le 1 Oct 2013
for K = 1 : length(X)
numiters(K) = SomeFunctionToDetermineTheIters(X(K));
end
semilogx(X, numiters);
Voir également
Catégories
En savoir plus sur Image Filtering and Enhancement 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!