从下面的代码中,我想通过for循环从冒号运算符生成一个矩阵,并在ends(20x2 double)中给出起始值和结束值,其中第一列和第二列分别是起始值和结束值
for hh=1:length(ends)
xx{:,hh}=ends(hh,1)-1:ends(hh,2)+1;
end
它给了我以下错误信息
Expected one output from a curly brace or dot indexing expression, but there were 0 results.
Error in new_one (line 11)
xx{:,hh}=ends(hh,1)-1:ends(hh,2)+1;
在这方面的任何帮助将不胜感激