I have the equation:
syms x y
A= 5*x - 100*y == x
I want it to be rearranged in the form:
A = 0 == 4*x-100y
How can I do it?
I have the equation:
syms x y
A= 5*x - 100*y == x
I want it to be rearranged in the form:
A = 0 == 4*x-100y
How can I do it?
Copyright © 2021 Jogjafile Inc.
Use
children()to splitAin two parts:LHSRHSThen compute
A = 0 == LHS - RHSThe code is as follows