在matlab中的多个arctan

时间:2015-04-04 20:35:58

标签: matlab

我在matlab中试过这个:

a=2*pi*10^6;
b=6*pi*10^6;
c=20*pi*10^6;

solve ('atan(w/a) + atan(w/b) + atan(w/c) = 115')

希望找到' w'但是我收到以下错误:

Warning: Explicit solution could not be found. 
In solve at 83

ans =[ empty sym ]

有人可以帮我解决我的matlab错误吗?

1 个答案:

答案 0 :(得分:2)

没有解决方案。

atan的最大值为pi/2,左侧在3*pi/2-3*pi/2之间,它永远不会等于115。

请注意atan使用弧度,而不是度数。