what is cos 30?

18 ビュー (過去 30 日間)
goshi aslam
goshi aslam 2015 年 2 月 21 日
回答済み: Greig 2015 年 2 月 21 日
cos*30

回答 (2 件)

Greig
Greig 2015 年 2 月 21 日
MATLAB also has the cosd() function, so you can use cosd(30). Have a look at the trigonometry documentation for other similar function.

SamBro
SamBro 2015 年 2 月 21 日
MatLab will do all calculations in radians as a default. So if you want to calculate
ans=cos(30);
in degrees you'll need to write:
ans=cos(30*pi/180);
ans=sqrt(3)/2
Otherwise, if you calculate
ans=cos(30);
in MatLab you'll get:
ans=0.1543

タグ

タグが未入力です。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by