- 积分
- 327
- 明经币
- 个
- 注册时间
- 2011-4-7
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
C#写数学函数很麻烦啊,比如开方这些,搞得很复杂,有什么解决办法呢?
temp1 = ωnx * ωnx + ωnxφ * ωnxφ;
temp2 = Math.Pow((ωnx * ωnx - ωnxφ * ωnxφ), 2);
temp3 = 4 * m * h2 * h2 / Jmy * Math.Pow(ωnx, 4);
temp4 = Math.Pow((temp2 + temp3), 0.5);
ωnxφ1 = Math.Pow(0.5 * (temp1 - temp4), 0.5);
ωnxφ2 = Math.Pow(0.5 * (temp1 + temp4), 0.5);
|
|