Filter löschen
Filter löschen

Plotting a function over an interval

1 Ansicht (letzte 30 Tage)
Ali Baig
Ali Baig am 17 Aug. 2018
Bearbeitet: Torsten am 17 Aug. 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 Kommentare
Ali Baig
Ali Baig am 17 Aug. 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 am 17 Aug. 2018
Bearbeitet: Torsten am 17 Aug. 2018
x=linspace(0,1,40);
a=1e-12;
y=(1+x).*((1+x)/2).^(1/a);
plot(x,y)
works for me.

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by