作业帮 > 英语 > 作业

大神给我解释一下下面这些Matlab泰勒公式的用法

来源:学生作业帮 编辑:搜搜考试网作业帮 分类:英语作业 时间:2024/06/27 16:17:44
大神给我解释一下下面这些Matlab泰勒公式的用法
taylor(f) computes the Taylor series expansion of f up to the fifth order.The expansion point is 0.taylor(f,Name,Value) uses additional options specified by one or more Name,Value pair arguments.taylor(f,v) computes the Taylor series expansion of f with respect to v.taylor(f,v,Name,Value) uses additional options specified by one or more Name,Value pair arguments.taylor(f,v,a) computes the Taylor series expansion of f with respect to v around the expansion point a.taylor(f,v,a,Name,Value) uses additional options specified by one or more Name,Value pair arguments.http://www.mathworks.cn/cn/help/symbolic/taylor.html#inputarg_v
大神给我解释一下下面这些Matlab泰勒公式的用法
这些是泰勒公式的一般用法:
taylor(f)就是展开到5阶,展开点在x=0;
taylor(f,v,a)就是对函数f的变量v进行展开,到5阶,展开点在v=a;
taylor(f,v)就是对函数f的变量v进行展开,到5阶,展开点在v=0;
再问: taylor(f,Name,Value)
taylor(f,v,Name,Value)
那这几个呢