フィルターのクリア

How can I plot a graph with certain limitations?

1 回表示 (過去 30 日間)
J. Nash
J. Nash 2017 年 1 月 19 日
回答済み: Walter Roberson 2017 年 1 月 19 日
I need to plot the y=x^2 but only in the interval of (0,10] (half open,half closed interval). How can I do this in MatLab?

回答 (1 件)

Walter Roberson
Walter Roberson 2017 年 1 月 19 日
fplot(@(x) x.^2, [eps(realmin), 10])
eps(realmin) is the smallest representable positive floating point number. That is as close as MATLAB numeric processing can get to not including 0 but including limit(epsilon, epsilon > 0), but it is only about 10^(-330) which is not even close to being satisfactory as sufficiently "infinitely small". You can switch to the Symbolic toolbox, but you with it you cannot do much better than 10^(-50000000), maybe 10^(-99999999) but no better, which is still infinitely too large to be a satisfactory approximation of infinitely small.

カテゴリ

Help Center および File ExchangeGraph and Network Algorithms についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by