changing variables in syms

3 次查看(过去 30 天)
If I am working in syms and I say
c= I * (a * I + b * J)
How do I tell matlab that I want I * J = 0 so that it outputs
c = I * (a * I)?

采纳的回答

Sean de Wolski
Sean de Wolski 2011-10-12
subs(c,'J',0)
since J or I has to be zero in the substitution and you want I retained.
  4 个评论
Walter Roberson
Walter Roberson 2011-10-12
Franco, I * J does not express dot product. MuPad expresses dot product via the MuPad routine linalg::scalarProduct (which is not exposed at the MATLAB level.)
If you are using the Maple based symbolic engine, then Maple's dot product operator is . (period), as in maple('A . B')
Franco
Franco 2011-10-12
thanks Walter.

请先登录,再进行评论。

更多回答(0 个)

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by