其他分享
首页 > 其他分享> > 使用Matlab进行符号定积分运算

使用Matlab进行符号定积分运算

作者:互联网

使用matlab进行符号定积分运算如下:

   syms x;
   syms b;
   f =b + 2*x;
   a=int(f,x,-6,6)

a =12*b

首先设置参量,本例中为x 和 b;
int函数(被积函数,积分变量,积分下限,积分上限),如果只有一个参量,则可以省略第二项。上下两例分别对x和b进行积分。

   syms x;
   syms b;
   f =b + 2*x;
   a=int(f,b,-6,6)

a =24*x

标签:运算,符号,int,积分,参量,syms,Matlab
来源: https://blog.csdn.net/qq_43330721/article/details/104689295