cross multiplication of algebra expression denominators

3 ビュー (過去 30 日間)
David Johnson
David Johnson 2021 年 8 月 1 日
回答済み: John D'Errico 2021 年 8 月 1 日
How do I get matlab to do the cross multiplcation and display my equation without fractions?
I would like to see the equation after cross multiplying by a and b. ( by = abk + ax )
eq = ( y/a == k+x/b )
eq = (sym)
y x
─ = k + ─
a b

採用された回答

John D'Errico
John D'Errico 2021 年 8 月 1 日
syms x y a b k
eq = y/a == k+x/b
eq = 
Symple enough. :)
eq = expand(eq*a*b)
eq = 

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLinear Algebra についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by