我在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我错过了?
答案 0 :(得分:0)
我只需要使用'clearvars dplus'来实现它。谢谢纳文!