下标问题
??? Attempted to access slop(7001); index must be a positive integer or logical.什么意思啊~~~高手指教~! index must be a positive integer or logical字面意思是下标应为正整数
还不明白的话,贴下你的程序 算斜率的,程序是:
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) 原帖由 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是一个浮点数,能作下标引用吗?哪个语言都不支持拉 偶明白了,谢谢~~~~~~~~~~~
页:
[1]