フィルターのクリア

Integrating indefinite integrals without Symbolic

3 ビュー (過去 30 日間)
Robin Seibel
Robin Seibel 2014 年 4 月 1 日
回答済み: Mike Hosea 2014 年 4 月 9 日
I'm looking for examples of code that demonstrate plotting an indefinite integral without using symbolic solution.

採用された回答

Mike Hosea
Mike Hosea 2014 年 4 月 9 日
First of all, when working with indefinite integrals numerically, we will need to fix the constant of integration. This is usually done indirectly by selecting the starting point of the integration, e.g. a = 1 for the natural logarithm
ln_scalar = @(x)integral(@(t)1./t,1,x);
I named it "ln_scalar" because it turns out that this definition will only work for scalar values of x. It's easy to extend it to array values, however, so the function we wanted all along is
ln = @(x)arrayfun(ln_scalar,x);
Now we can evaluate ln(x) for arrays of x in MATLAB and hence plot it if we like
x = linspace(0.5,10);
plot(x,ln(x));
Since the repeated integrations here have overlapping intervals, it is possible to be more efficient by integrating only between the points to be plotted and then use CUMSUM to form the function values, but such a solution presupposes that we know all the output points up front.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCalculus についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by