My int function return the same int function, how can I get the answer?
显示 更早的评论
syms k_m
syms q_m
syms x
assume(x>=0)
assume(q_m>0)
syms c
syms Beta
assume(c>0)
syms b_m
assume(b_m>=0)
assume(Beta>0)
a_3=(b_m*c*(x^c)*exp(-(x^c/Beta)))/((2*pi)^(1/2)*Beta)
o_3=-(int(a_3,x,k_m,q_m))
o_3 =
-int((2251799813685248*b_m*c*x^c*exp(-x^c/Beta))/(5644425081792261*Beta), x, k_m, q_m)
It is very stranger that the answer o_3 is the same equation as o_3=-(int(a_3,x,k_m,q_m))
How can I have the right answer? Thanks.
Also, I have another formula with int function, and it was given an right answer once, then later, I applied the same formula with int function, it gave me back the same formula with int function just like above.
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Texas Instruments C2000 F28M3x Concerto Processors 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!