How do I plot the number of iterations of a function using Semilogx?

1 visualizzazione (ultimi 30 giorni)
I have no clue how to do this

Risposte (1)

Walter Roberson
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);

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by