How can I do this integration??
显示 更早的评论
Hi guys. I want to solve the below integration problem by matlab. I cannot get the correct answer by integration function.

7 个评论
Torsten
2022-7-25
Please describe and write down your problem in a comprehensible form.
AppleNg
2022-7-25
Walter Roberson
2022-7-26
you did not indicate which variable to integrate over
syms G J S Theta_T STheta_T y
F = Theta_T*STheta_T
ANS = -int(G*J/S^2*F,y,0,S)
AppleNg
2022-7-26
Walter Roberson
2022-7-26
When you use the Live editor, then for the display of symbolic expressions, each identifier is examined. The identifier is split at _ and . Each segment is examined, and if it is the English name of a Greek letter then the corresponding Greek symbol is rendered. For components after the first, some key words such as dot and hat are recognized and indicate accents modifying what is rendered.
You cannot, for example, use β itself as an identifier but you can use beta and in appropriate context it will render as β
You cannot get an identifier to render as sθ or δθ but if you used delta_theta it should render as δ with subscript θ
Again this is only Livescript
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Labels and Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!