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

Answers (1)

for K = 1 : length(X)
numiters(K) = SomeFunctionToDetermineTheIters(X(K));
end
semilogx(X, numiters);

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Asked:

on 1 Oct 2013

Commented:

on 1 Oct 2013

Community Treasure Hunt

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

Start Hunting!