where is the mistake?

4 ビュー (過去 30 日間)
Amer Al-Maashani
Amer Al-Maashani 2021 年 1 月 18 日
編集済み: Amer Al-Maashani 2021 年 1 月 18 日
ezplot('int((x*x*normpdf(x,1,2)))',[-20 20 0 2])

採用された回答

Walter Roberson
Walter Roberson 2021 年 1 月 18 日
What is being integrated? What is the lower bound? What is the upper bound?
Your use of [-20 20 0 2] suggests that you are expecting to plot over two dimensions. As you have an integral, that would require three variables, with one of them being the variable of integration. Your expression only has one variable, and it would be used as the variable of integration if the integral worked, leaving you with two extra variables.
Remember that int() is strictly for symbolic integration.
syms x
f = int((x*x*normpdf(x,1,2)))
f = 
ezplot(f,[-20 20 0 2])
  1 件のコメント
Amer Al-Maashani
Amer Al-Maashani 2021 年 1 月 18 日
編集済み: Amer Al-Maashani 2021 年 1 月 18 日
Have a look to the plot for that
>> syms x
>> f = int((x*x*normpdf(x,1,2)))
f =
(5629499534213120*2^(1/2)*pi^(1/2)*erf(2^(1/2)*(x/4 - 1/4)))/5644425081792261 - (4503599627370496*x*exp(- x^2/8 + x/4 - 1/8))/5644425081792261 - (4503599627370496*exp(- x^2/8 + x/4 - 1/8))/5644425081792261
>> ezplot(f,[-20 20])
I got it as it should be.
Thanks a lot

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

その他の回答 (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