solve函数使用问题。
显示 更早的评论
为什么以下solve函数不能等价?表达形式1:
>> [x,y] = solve('(x^2 + y^2)^(0.5)-((x-20)^2 + y^2)^(0.5) =0','(x^2 + y^2)^(0.5)-(x^2 + (y-20)^2)^(0.5) =0')
表达形式2:
>> a=0;b=0;>> [x,y] = solve('(x^2 + y^2)^(0.5)-((x-20)^2 + y^2)^(0.5) =a','(x^2 + y^2)^(0.5)-(x^2 + (y-20)^2)^(0.5) =b')
如果我要以表达形式2来求解方程,该怎么做?
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 编程 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!