amygod 发表于 2006-10-15 22:46

下标问题

??? Attempted to access slop(7001); index must be a positive integer or logical.什么意思啊~~~高手指教~!

jimin 发表于 2006-10-15 22:56

index must be a positive integer or logical
字面意思是下标应为正整数
还不明白的话,贴下你的程序

amygod 发表于 2006-10-16 10:31

算斜率的,程序是:
function slope(a,b,c)
x=a:0.001:b;
x=;
x1=x+(10^(-8))*ones(size(x));
slop=(f(x1)-f(x))./(x1-x);
c=(c-a)/0.001+1;
slop(c)

eight 发表于 2006-10-16 10:35

原帖由 amygod 于 2006-10-16 10:31 发表
算斜率的,程序是:
function slope(a,b,c)
x=a:0.001:b;
x=;
x1=x+(10^(-8))*ones(size(x));
slop=(f(x1)-f(x))./(x1-x);
c=(c-a)/0.001+1;
slop(c)

c是一个浮点数,能作下标引用吗?哪个语言都不支持拉

amygod 发表于 2006-10-16 11:00

偶明白了,谢谢~~~~~~~~~~~
页: [1]
查看完整版本: 下标问题