标签: matlab
我在matlab中试过这个:
arctan(7e8/1.5e14) %rad
但是我收到以下错误:
Undefined function 'arctan' for input arguments of type 'double'.
有人可以帮我解决我的matlab错误吗?
答案 0 :(得分:10)
您需要使用atan,而不是arctan:
atan
arctan
>> atan(7e8/1.5e14) ans = 4.6667e-006