How can i plot using semilog graph using cftool
10 ビュー (過去 30 日間)
古いコメントを表示
I would like to plot using either semilogy or semilogx instead of normal plot...
0 件のコメント
回答 (1 件)
Shashank Prasanna
2013 年 1 月 29 日
This feature is currently not available in CFTOOL. The best workaround I can recommend is to click on File > Generate Code.
In the code file under plot command use the following lines:
% h = plot( fitresult, xData, yData ); Comment this line and add the lines below.
semilogx(xData,yData)
yD = feval(fitresult,xData);
hold on
semilogx(xData,yD,'--r')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Interpolation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!