cross multiplication of algebra expression denominators

조회 수: 2 (최근 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 CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by