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