How to solve non-linear mathematical equation in matlab? -
i've 2 equations as:
x = c1 - y; y = c2*c3*x / (1+c3*x);
where c1
, c2
, c3
constants. how solve these equations in matlab? please help.
since i'm in mood morning:
x = c1 - y; y = c2*c3*x / (1+c3*x);
now, pen , paper:
y = c1 - x c1 - x = c2*c3*x / (1 + c3*x) (c1 - x) * (1 + c3*x) = (c2 * c3 * x) (c1 - x) * (1 + c3*x) - c2*c3*x = 0
Comments
Post a Comment