怎么用matlab求解cos(x)-x*sin(x)=0并画出y=cos(x)-x*sin(x)的图像?在线等,急用!!

 我来答
风清响
2013-06-08 · TA获得超过1万个赞
知道大有可为答主
回答量:3827
采纳率:60%
帮助的人:2065万
展开全部
ezplot('cos(x)-x*sin(x)') %画出图像
fzero('cos(x)-x*sin(x)',x0) %x0是你根据图像猜的根,函数返回该值附近的零点

ezplot默认的范围是[-2*pi,2*pi],是有4个零点。你分别猜一下就可以了。或者可以写个for循环

for k=[-3,-1,1,3]
fzero('cos(x)-x*sin(x)',k)
end
枫叶嘉年华
2013-06-08 · 超过31用户采纳过TA的回答
知道答主
回答量:111
采纳率:0%
帮助的人:83.5万
展开全部
syms x y
z=y-cos(x)+x*sin(x)==0
ezplot(z)
solve(z,x)

会提示显式解无法求出。试试fzero函数求零点
更多追问追答
追问
可以具体点吗?
追答
用help fzero,这个函数专门用来求零点的。如果不行,你就用数值方法求解方程。
>> help fzero
fzero Single-variable nonlinear zero finding.
X = fzero(FUN,X0) tries to find a zero of the function FUN near X0,
if X0 is a scalar. It first finds an interval containing X0 where the
function values of the interval endpoints differ in sign, then searches
that interval for a zero. FUN is a function handle. FUN accepts real
scalar input X and returns a real scalar function value F, evaluated
at X. The value X returned by fzero is near a point where FUN changes
sign (if FUN is continuous), or NaN if the search fails.
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
李修灵
2013-06-08 · TA获得超过287个赞
知道小有建树答主
回答量:87
采纳率:100%
帮助的人:74.7万
展开全部
%按楼上数值解吧
func=@(x)(cos(x)-x.*sin(x));

x_v=fsolve(func,2);
xdata=-10:0.1:10; plot(xdata,func(xdata))
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式