Is there a function in matlab where I can get the common factor I want in an equation?
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
savas yilmaz
el 15 de Ag. de 2021
Comentada: Bassem
el 18 de Nov. de 2022
ax+3by+4cy+x-1=0
Is there a function in matlab where I can get the common factor I want in this equation?
For example, I want the x and y factors. Is there a common factoring function like the one below?
x(a+1)+y(3b+4c)-1=0
0 comentarios
Respuesta aceptada
Walter Roberson
el 15 de Ag. de 2021
syms a b c x y
eqn = a*x+3*b*y+4*c*y+x-1 == 0
collect(eqn, [x, y])
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Linear Algebra en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!