10^6+10^4*cos(2*pi)*10^3t这个函数用matlab求积分.

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/15 18:53:35
10^6+10^4*cos(2*pi)*10^3t这个函数用matlab求积分.

10^6+10^4*cos(2*pi)*10^3t这个函数用matlab求积分.
10^6+10^4*cos(2*pi)*10^3t这个函数用matlab求积分.

10^6+10^4*cos(2*pi)*10^3t这个函数用matlab求积分.
我重新看了看楼主的题目,的确存在点错误,楼主可能需要的答案有两个,运行结果为:
>>syms t;
>> int(10^6+10^4*cos(2*pi)*10^3*t)
ans =
50000*(10*t + 1)^2
>> int(10^6+10^4*cos(2*pi)*10^(3*t))
ans =
1000000*t + (10000*1000^t)/(3*log(10))

运行结果为:
>>syms t;
>> int(10^6+10^4*cos(2*pi)*10^3*t)

ans =

50000*(10*t + 1)^2
另外,您最后一个3t 少写了一个乘号* 直接像楼上那样输入是会报错的。