Plotting a function over an interval

1 vue (au cours des 30 derniers jours)
Ali Baig
Ali Baig le 17 Août 2018
Modifié(e) : Torsten le 17 Août 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 commentaires
Ali Baig
Ali Baig le 17 Août 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 le 17 Août 2018
Modifié(e) : Torsten le 17 Août 2018
x=linspace(0,1,40);
a=1e-12;
y=(1+x).*((1+x)/2).^(1/a);
plot(x,y)
works for me.

Connectez-vous pour commenter.

Réponses (0)

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by