在matlab中怎样求带有参数的定积分

2025年01月21日 00:52
有1个网友回答
网友(1):

设被积函数为f=ax+b,积分区间为(c,d)
MATLAB代码如下:
syms a b c d x;
f=a*x+b;
answer=int(f,x,c,d).