如何用Matlab 求解方程cosX*coshX=1的多个解
答案:2 悬赏:70 手机版
解决时间 2021-03-21 06:29
- 提问者网友:难遇难求
- 2021-03-20 06:49
如何用Matlab 求解方程cosX*coshX=1的多个解
最佳答案
- 五星知识达人网友:woshuo
- 2021-03-20 07:54
>> x=solve('cos(x)*cosh(x)-1=0')
x =
0
只有一个解
x =
0
只有一个解
全部回答
- 1楼网友:躲不过心动
- 2021-03-20 09:11
syms x, solve(cos(x)*cosh(x)-1,x(:))
-------------------
syms x;
ezplot(cos(x)*cosh(x));
hold on;
ezplot(x^0);
hold off;
---------------------
this is one of the numeric methods to find multiple roots of sin(x)=0 for your additional question:
root=zeros(1,20); for i=1:20; x0=3*i; root(i)=fzero(@sin,x0); end
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯