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

问题描述:

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

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