Borrar filtros
Borrar filtros

How to change array element with another array

3 visualizaciones (últimos 30 días)
Mirza M
Mirza M el 4 de Dic. de 2014
Respondida: Andrei Bobrov el 4 de Dic. de 2014
hi all, so i have 2 array and i want to change the value of array1 to array2. for example i have:
a = [1 1 1; 1 1 1; 1 1 1]
b = [4 4; 4 4]
and i want the array to be like this :
c = [4 4 1; 4 4 1; 1 1 1]
basicaly i want 'b' to be inside 'a' and replace all element 'a' in the same position as 'b' hehe what is the simplest code for this? thanks

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 4 de Dic. de 2014
a = [1 1 1; 1 1 1; 1 1 1]
b = [4 4; 4 4]
[n,m]=size(b)
a(1:n,1:m)=b

Más respuestas (1)

Andrei Bobrov
Andrei Bobrov el 4 de Dic. de 2014
n = size(b);
c = a;
c(1:n(1),1:n(2)) = b;

Categorías

Más información sobre NaNs en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by