My int function return the same int function, how can I get the answer?
Ältere Kommentare anzeigen
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.
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Texas Instruments C2000 F28M3x Concerto Processors finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!