MatlabR2019a解三元二次方程程序报错

syms h b r t1
eq1=x^2+(y-h)^2==r^2;
eq2=x*tan(t1)+b==y;
eq3=x*tan(t2)-b==y;
[x,y,t2]=solve(eq1,eq2,eq3,x,y,t2);
>> Untitled3
错误使用 solve (line 279)
Inconsistent output with 3 variables for input argument with 1 variables.

出错 Untitled3 (line 5)
[x,y,t2]=solve(eq1,eq2,eq3,x,y,t2);

谢谢大佬解答!

没定义x、y、t2这三个变量