Plotting a function over an interval

1 回表示 (過去 30 日間)
Ali Baig
Ali Baig 2018 年 8 月 17 日
編集済み: Torsten 2018 年 8 月 17 日
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 件のコメント
Ali Baig
Ali Baig 2018 年 8 月 17 日
I am trying to plot for ''a'' up to 10^-6 and the simplification propsed by Hamming works up to this value.
Torsten
Torsten 2018 年 8 月 17 日
編集済み: Torsten 2018 年 8 月 17 日
x=linspace(0,1,40);
a=1e-12;
y=(1+x).*((1+x)/2).^(1/a);
plot(x,y)
works for me.

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by