Repeat a 2D matrix at multiple places in 5D matrix
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
ANAND NALE
el 20 de Ag. de 2021
Comentada: ANAND NALE
el 20 de Ag. de 2021
I have a 5D matrix
A = zeros(5,2,2,2,2)
I have another matrix (2D Matrix)
B = [ 1 6
2 7
3 8
4 0
5 10];
Now I need to evaluate:
A(:, :, 2, :, :) = B;
Its shows an error.
0 comentarios
Respuesta aceptada
Turlough Hughes
el 20 de Ag. de 2021
You could do the following:
A(:, :, 2, :, :) = repmat(B,1,1,1,2,2);
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!