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