我用的是matlab2020b版本,快要被solve函数气疯掉了(‵□′) 求求大佬解答
syms a b c x y;
solve('ax^2+by+c=0','x+y=0','x','y')
检查对函数 'solve' 的调用中是否缺失参数或参数数据类型不正确。
clear
syms a b c x y;
solve('ax^2+by+c=0','x+y=0','x','y')
检查对函数 'solve' 的调用中是否缺失参数或参数数据类型不正确。
syms a b c x y;
solve('ax^2+by+c==0','x+y==0','x','y')
检查对函数 'solve' 的调用中是否缺失参数或参数数据类型不正确。
syms a b c x y;
f1 = 'ax^2+by+c=0';
f2 = 'x+y==0';
solve(f1,f2,'x','y')
检查对函数 'solve' 的调用中是否缺失参数或参数数据类型不正确。
syms a b c x y;
f1 = 'ax^2+by+c=0';
f2 = 'x+y=0';
solve(f1,f2,x,y)
错误使用 sym/solve>getEqns (第 418 行)
List of equations must not be empty.
出错 sym/solve (第 226 行)
[eqns,vars,options] = getEqns(varargin{:});
syms a b c x y;
f1 = 'ax^2+by+c==0';
f2 = 'x+y==0';
solve(f1,f2,x,y)
错误使用 sym/solve>getEqns (第 418 行)
List of equations must not be empty.
出错 sym/solve (第 226 行)
[eqns,vars,options] = getEqns(varargin{:});
syms a b c x y;
f1 = 'ax^2+by+c=0';
f2 = 'x+y=0';
solve(f1,f2,'x','y')
检查对函数 'solve' 的调用中是否缺失参数或参数数据类型不正确。
syms a b c x y;
f1 = 'ax^2+by+c=0';
f2 = 'x+y=0';
[x,y] = solve(f1,f2,'x','y')
检查对函数 'solve' 的调用中是否缺失参数或参数数据类型不正确。
syms a b c x y;
f1 = 'ax^2+by+c=0';
f2 = 'x+y=0';
[x,y] = solve(f1,f2,'x,y')
检查对函数 'solve' 的调用中是否缺失参数或参数数据类型不正确。
f1 = 'ax^2+by+c=0';
f2 = 'x+y=0';
[x,y] = solve(f1,f2,'x,y')
检查对函数 'solve' 的调用中是否缺失参数或参数数据类型不正确。
[x,y] = solve('ax^2+by+c=0','x+y=0','x,y')
检查对函数 'solve' 的调用中是否缺失参数或参数数据类型不正确。
[x,y] = solve('ax^2+by+c==0','x+y==0','x,y')
检查对函数 'solve' 的调用中是否缺失参数或参数数据类型不正确。
clear
[x,y] = solve('ax^2+by+c=0','x+y=0','x,y')
检查对函数 'solve' 的调用中是否缺失参数或参数数据类型不正确。