Borrar filtros
Borrar filtros

Plotting a function over an interval

1 visualización (últimos 30 días)
Ali Baig
Ali Baig el 17 de Ag. de 2018
Editada: Torsten el 17 de Ag. de 2018
I am trying to plot a function in which one term is (2^(-1/a))*(1+x)^(1+1/a). When a is very small, for example a=10^-4 or even smaller, this term turns to NaN. How can I plot this function?
  9 comentarios
Ali Baig
Ali Baig el 17 de Ag. de 2018
I am trying to plot for ''a'' up to 10^-6 and the simplification propsed by Hamming works up to this value.
Torsten
Torsten el 17 de Ag. de 2018
Editada: Torsten el 17 de Ag. de 2018
x=linspace(0,1,40);
a=1e-12;
y=(1+x).*((1+x)/2).^(1/a);
plot(x,y)
works for me.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by