Not enough input arguments.
Mostrar comentarios más antiguos
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 comentario
Matt J
el 11 de Dic. de 2020
You should believe what the error message is telling you.
Respuesta aceptada
Más respuestas (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.

1 comentario
Sophia Nador
el 11 de Dic. de 2020
Categorías
Más información sobre Multidimensional Arrays en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!