How can i plot using semilog graph using cftool

10 Ansichten (letzte 30 Tage)
mzain
mzain am 29 Jan. 2013
I would like to plot using either semilogy or semilogx instead of normal plot...

Antworten (1)

Shashank Prasanna
Shashank Prasanna am 29 Jan. 2013
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')

Kategorien

Mehr zu Interpolation finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by