请大家帮我修改一下下面的求极限程序
请大家帮我修改一下下面的求极限程序: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 编辑 ] help subs
也可以搜索一下论坛,参阅一下“符号变量转换为数值型”的帖子
[ 本帖最后由 ChaChing 于 2009-5-16 18:23 编辑 ] 绘图前,务必先给定n的值.---参考eight 的建议. thank you very much
页:
[1]