Azzera filtri
Azzera filtri

How can I add the elements of a smaller matrix in the elements of a bigger matrix at some specified locations ???

10 visualizzazioni (ultimi 30 giorni)
Is there any direct way of adding matrix "B" directly in "A" to get "D" matrix ??? I did it the following way...
A=ones(5);
B=ones(2);
C=zeros(5);
C(1:2,1:2)=B;
D=C+A;

Risposta accettata

James Tursa
James Tursa il 25 Lug 2017
Modificato: James Tursa il 25 Lug 2017
Another way:
D = A;
D(1:2,1:2) = D(1:2,1:2) + B;
Or, if you don't know the size of B in advance or where you want it added in:
i = row index of replacement spot
j = col index of replacement spot
[m,n] = size(B);
D = A;
D(i:i+m-1,j:j+n-1) = D(i:i+m-1,j:j+n-1) + B;

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by