Make a good plot of the function: f(x) = sin(1/x) for 0.01 < x < 0.1. How did you create x so that the plot looks good?

42 次查看(过去 30 天)
How to assign the limits and plot it

回答(2 个)

Michael Haderlein
Michael Haderlein 2015-2-19
In this case, I'd rather use a logarithmic spaced x instead of a linearly spaced one. I'm sure you are aware that this function gets tricky for small x, so you'll need quite a lot of points to evaluate there. You can use something like
x=logspace(-2,-1,500);
y = sin(1./x);
plot(x,y)

Sajjadul Haque
Sajjadul Haque 2020-9-9
F(x)= sin-1(x)
Write down the matlab program to determine central,
forward and backward derivatives of F(x); and also Write
down the matlab program to determine the exact derivative.

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by