How do I plot the number of iterations of a function using Semilogx?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I have no clue how to do this
0 Commenti
Risposte (1)
Walter Roberson
il 1 Ott 2013
Modificato: Walter Roberson
il 1 Ott 2013
for K = 1 : length(X)
numiters(K) = SomeFunctionToDetermineTheIters(X(K));
end
semilogx(X, numiters);
Vedere anche
Categorie
Scopri di più su Image Filtering and Enhancement in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!