我在 matlab 中创建的函数遇到了这个问题。我有变量 h = 0.2 和 x = (0:h:1)'。'x' 是一个包含 5 个元素的行向量。我在matlab中使用以下函数
function d = dplus(fstring, x, h)
d=0;
end
每当我将以下内容插入matlab时
dplus('prob4Func',x,h)
我收到此错误“??? 索引超出矩阵尺寸。” 这完全没有意义,因为我什至没有在函数的任何地方使用向量“x”。我缺少matlab是否有一些微妙之处?