如何利用Matlab自带命令求解变上限并且积分表达式带有绝对值的定积分

Matlab可以利用自带命令(integral,integral2,integral3)求解1重,2重,3重定积分,但是对于更多重数就没有提及,是不是意味着可以利用低重积分命令去求解高重的?对于以下图片的积分如何利用Matlab自带命令求解,图中C表示常数。
2026年09月19日 02:47
有1个网友回答
网友(1):

The function of F(t) does not have closed form in theory. Therefore a lot of tables were created and attached in old fashion text books. In Matlab you can use function normcdf() in the Statistics Toolbox to calculate F(t), for example: >> format long; >> normcdf(3,0,1) ans = 0.99865010196837 You can also use function qfunc() in the Communications Toolbox or funcion erf() to build up normcdf(). All these functions have simple relations.