How to put square root numbers into Matlab?
조회 수: 40 (최근 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개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!