Plotting a function over an interval

1 view (last 30 days)
Ali Baig
Ali Baig on 17 Aug 2018
Edited: Torsten on 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 Comments
Ali Baig
Ali Baig on 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 on 17 Aug 2018
Edited: Torsten on 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.

Sign in to comment.

Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!