フィルターのクリア

why the 0.1 is a high require in f2 line

1 回表示 (過去 30 日間)
JICHAO ZHANG
JICHAO ZHANG 2023 年 6 月 20 日
コメント済み: JICHAO ZHANG 2023 年 6 月 20 日
f = @(r,theta,phi,xi) r.^3 .* sin(theta).^2 .* sin(phi);
f1=@(theta,phi,xi)integral(@(r)f(r,theta,phi,xi),0,2,'ArrayValued',1);
df2=@(theta,phi,xi)cell2mat(arrayfun(@(theta,phi,xi)f1(theta,phi,xi),theta,phi,xi,'UniformOutput',0));
f2=integral3(@(theta,phi,xi)f(theta,phi,xi),0,pi,0,pi,0,2*pi,'AbsTol', 0,'RelTol',0.1);
ret=f2
  1 件のコメント
Walter Roberson
Walter Roberson 2023 年 6 月 20 日
f = @(r,theta,phi,xi) r.^3 .* sin(theta).^2 .* sin(phi);
So f expects 4 input parameters
f2=integral3(@(theta,phi,xi)f(theta,phi,xi),0,pi,0,pi,0,2*pi,'AbsTol', 0,'RelTol',0.1);
but here f is invoked with three input parameters

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

回答 (1 件)

Naman
Naman 2023 年 6 月 20 日
Hi Jichao Zhang,
The 'RelTol' parameter in the integral3 function sets the relative error tolerance for the numerical integration.
In the given code, 'RelTol' is set to 0.1, which allows for a maximum relative error of 10% in the numerical integration. This value is relatively high and may not be appropriate for some applications that require high accuracy. However, depending on the specific requirements of the application, a 'RelTol' of 0.1 may be sufficient to achieve reasonable accuracy while still maintaining computational efficiency.
Hope it helps.
  1 件のコメント
JICHAO ZHANG
JICHAO ZHANG 2023 年 6 月 20 日
many thanks

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

カテゴリ

Help Center および File ExchangeNumerical Integration and Differentiation についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by