(13.1^2-b^2 15.2^2 30^2)/(2*13.1*15.2)=1.461
이전 댓글 표시
calculate b value
댓글 수: 2
Alex Mcaulley
2019년 12월 3일
What is the question?
Vladimir Sovkov
2019년 12월 3일
What does it have to do with Matlab? Quite obvious the solution is
답변 (1개)
Shota Kato
2019년 12월 3일
syms b
fun = (13.1^2 - b^2 * 15.2^2 * 30^2 ) / (2*13.1*15.2)==1.461;
ans = solve(fun)
ans =
-(25638665^(1/2)*1i)/114000
(25638665^(1/2)*1i)/114000
25638665^(1/2) / 114000
ans =
0.0444
카테고리
도움말 센터 및 File Exchange에서 Simulink 3D Animation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!