尝试访问八度中的函数参数时,出现以下错误:错误:在第5行第18列附近未定义's'。 以下是随附的代码段
function index = find_template_1D(t, s)
% TODO: Locate template t in signal s and return index
for i = size(s)
if (s(i)==t(1) && s(i+1) == t(2) && s(i+2)==t(3))
index = i;
endif
endfor
endfunction
index = find_template_1D(t, s);
有人可以帮我弄清楚到底是什么问题吗?