How do I plot the number of iterations of a function using Semilogx?
1 回表示 (過去 30 日間)
古いコメントを表示
I have no clue how to do this
0 件のコメント
回答 (1 件)
Walter Roberson
2013 年 10 月 1 日
編集済み: Walter Roberson
2013 年 10 月 1 日
for K = 1 : length(X)
numiters(K) = SomeFunctionToDetermineTheIters(X(K));
end
semilogx(X, numiters);
参考
カテゴリ
Help Center および File Exchange で Image Filtering and Enhancement についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!