How to plot log

7 Ansichten (letzte 30 Tage)
Jas M
Jas M am 14 Jan. 2018
Beantwortet: Jas M am 14 Jan. 2018
I'm trying to plot this function and my plot should look like the second picture ( for a= 110, b=2,c=2., d=7) but mine doesn't can you please tell me what im doing wrong? this function gives Log ( CSF) but plot is for CSf vs F
function func = qcsf(a,b,c)
f=1:5;
x= log(f)-log(b) ;
y= c*(log(2)/2) ;
csf= log(a)-log2(x/y).^2 ;
qcsf= power(10,csf);
figure
plot(f,csf);

Antworten (2)

Rafael Hernandez-Walls
Rafael Hernandez-Walls am 14 Jan. 2018
change
plot
for
semilogy

Jas M
Jas M am 14 Jan. 2018
i did but y axis values are completely different..

Kategorien

Mehr zu Prepare Model Inputs and Outputs 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