1

我在matlab中试过这个:

arctan(7e8/1.5e14) %rad

但我收到以下错误:

Undefined function 'arctan' for input arguments of type 'double'.

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

4

1 回答 1

10

You need to use atan, not arctan:

>> atan(7e8/1.5e14)

ans =

  4.6667e-006
于 2013-09-14T15:13:43.147 回答