plotting eps function
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
I am tasked with plotting Y=((1.0+x)-1.0)/x) vs. x on a semilog plot however the plot shows nothing but the axis. Ideally it should be at a value of Y=0 until the x-axis reaches eps(1), at which point there is a step function where Y=1. My code is as follows,
Y=((1.0+x)-1.0)/x;
x=0:eps(1)/10:2*eps(1);
semilogx(Y,x)
axis([0 2*eps(1) 0 1.5]);
Any help would be greatly appreciated.
Thanks!
Derek
0 Kommentare
Antworten (1)
the cyclist
am 14 Jan. 2012
When you applied the axis() function, you are restricting to a region that does not have your plotted points. I think maybe you meant to plot
>> semilogx(x,Y)
or else you need to switch the x and y values in your axis() command.
0 Kommentare
Siehe auch
Kategorien
Mehr zu 2-D and 3-D 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!