How can i plot using semilog graph using cftool
조회 수: 12 (최근 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!