Not enough input arguments.
이전 댓글 표시
Hi,
I'm trying to use the repmat function :
for i=1:size(test,1)
a=(test{i,2 :4} - train{: , 2:4})
b=repmat(a)
end
But I only obtain this error :
Error using repmat
Not enough input arguments.
댓글 수: 1
Matt J
2020년 12월 11일
You should believe what the error message is telling you.
채택된 답변
추가 답변 (1개)
You should believe what the error message is telling you. In the documentation for repmat, you will find no single-argument syntax like the one you've used.

카테고리
도움말 센터 및 File Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!