heaventian 发表于 2007-3-26 12:43

请大家帮我修改一下下面的求极限程序

请大家帮我修改一下下面的求极限程序:
clear; clc; clf; symsn
x=-2.5:0.1:2.5;
for i=1:length(x), f(i)=limit((1+x(i)^(2*n))^(1/n),n,inf); end
plot(x,f)

运行的时候,程序报错,内容如下:
??? Error using ==> plot
Conversion to double from sym is not possible.
Error in ==> experiment2 at 9
plot(x,f)

检查f(i)的输出结果好象也不对,请问大家该怎么改呀?谢谢

[ 本帖最后由 ChaChing 于 2010-1-12 10:34 编辑 ]

eight 发表于 2007-3-26 13:19

help subs

也可以搜索一下论坛,参阅一下“符号变量转换为数值型”的帖子

[ 本帖最后由 ChaChing 于 2009-5-16 18:23 编辑 ]

xjzuo 发表于 2007-3-26 16:26

绘图前,务必先给定n的值.---参考eight 的建议.

heaventian 发表于 2007-3-26 19:52

thank you very much
页: [1]
查看完整版本: 请大家帮我修改一下下面的求极限程序