How to put square root numbers into Matlab?
108 ビュー (過去 30 日間)
古いコメントを表示
How do I put: 7 sqrt(2)/2 so that it equals 4.9497?
0 件のコメント
採用された回答
Aparajith Raghuvir
2021 年 6 月 7 日
Hello Ryan,
There are 2 ways to go about it. One possible way is:
7 * sqrt(2) / 2
Another possible and more general way to compute any x to the power of y is
7 * 2^0.5 / 2
Hope this helps.
Thanks,
Aparajith
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!