How do I plot the number of iterations of a function using Semilogx?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I have no clue how to do this
0 Kommentare
Antworten (1)
Walter Roberson
am 1 Okt. 2013
Bearbeitet: Walter Roberson
am 1 Okt. 2013
for K = 1 : length(X)
numiters(K) = SomeFunctionToDetermineTheIters(X(K));
end
semilogx(X, numiters);
Siehe auch
Kategorien
Mehr zu Image Filtering and Enhancement finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!