How do I plot the number of iterations of a function using Semilogx?
2 vues (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
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!