I received a negative MATLAB response while inserting the following requests:
syms x y z
solve (x+y==z,x-2*y==z,[x,y],'ReturnConditions', false)
I wanted to get x
, and y
in terms of z
but, alas, I got the following error:
??? Error using ==> char Conversion to char from logical is not possible.
Error in ==> solve>getEqns at 160 vc = char(v);
Error in ==> solve at 84 [eqns,vars] = getEqns(varargin{:});
Any help please?