cross multiplication of algebra expression denominators

4 visualizaciones (últimos 30 días)
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

Respuesta aceptada

John D'Errico
John D'Errico el 1 de Ag. de 2021
syms x y a b k
eq = y/a == k+x/b
eq = 
Symple enough. :)
eq = expand(eq*a*b)
eq = 

Más respuestas (0)

Categorías

Más información sobre Linear Algebra en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by