Help ploting logarithmic equation.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Andrejus
am 4 Dez. 2014
Bearbeitet: Star Strider
am 4 Dez. 2014
Hi all,
I have a following equation:
m=-3;
k=5.00034535E+11;
S=0.5:0.5:1000;
log10(S)=-1/m*log10(N)+1/m*log10(k);
I need to plot log10(N) versus log10(S). However, I do not know how to deal with this. Can someone help me out?
Thank you in advance!
0 Kommentare
Akzeptierte Antwort
Star Strider
am 4 Dez. 2014
Bearbeitet: Star Strider
am 4 Dez. 2014
A couple lines are necessary to rearrange your equation to give log10(N) as a funciton of log10(S). Not surprisingly, the result is a straight line:
m=-3;
k=5.00034535E+11;
S=0.5:0.5:1000;
log10N = log10(k) - m*log10(S);
figure(1)
plot(log10(S),log10N)
grid
xlabel('log_{10}(S)')
ylabel('log_{10}(N)')
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Surface and Mesh Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!