早教吧 育儿知识 作业答案 考试题库 百科 知识分享

matlab中怎么计算等式2.*asin(h)+2.*h.*sqrt(1-h.^2)=0.85.*pi,这个式子怎么在matlab中计算出h

题目详情
matlab中怎么计算等式
2.*asin(h)+2.*h.*sqrt(1-h.^2)=0.85.*pi,这个式子怎么在matlab中计算出h
▼优质解答
答案和解析
syms h;
solve('2*asin(h)+2*h*sqrt(1-h^2)=0.85*pi','h')
ans =
0.74326281783698800039518949853745 (PS:别看是一个式子 ,MATLAB 要跑1分钟.)