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

2025-01-21 00:52:46
推荐回答(1个)
回答1:

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