add matrix with respect to dimension
Información
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Mostrar comentarios más antiguos
how to add (3*3) matrix with dimension 3 for M(a,b,c) where a and b are (3*3) and c corresponds to dimension. after adding M(a,b,c) the results gets stored in N. so N =sum(M(a,b,c),3);
whether the command which i have used was right since i am unable to get the correct result.
Respuestas (1)
Andrei Bobrov
el 7 de Dic. de 2017
M = randi(25,3,3,4)
addarray = rand(3)
out = cat(3,M,addarray)
1 comentario
jaah navi
el 7 de Dic. de 2017
La pregunta está cerrada.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!