请教一个matlab的solve函数的问题
发布网友
发布时间:2024-10-06 11:02
我来回答
共1个回答
热心网友
时间:2024-11-22 03:42
function [x0,y0]=sss(a,b,c)
if nargin <1
a=0.26;
b=0.02;
c=0.15;
end
syms x;
syms y;
temp1=(x-a)^2+(y-b)^2-c^2;
temp2=1+y^1.5-x;
[x0,y0]=solve(temp1,temp2);
x0=eval(x0);
y0=eval(y0);