vectors u = (2,1,0) and v = (0,1,2). calculate cos thetha where thetha is the angle between u and v
5 ビュー (過去 30 日間)
古いコメントを表示
Please help
0 件のコメント
採用された回答
Explorer
2016 年 3 月 15 日
u = [2 1 0];
v = [0 1 2];
costheta = dot(u,v)/(norm(u)*norm(v))
theta = acos(costheta) %n angle
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Call C++ from MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!