replace matrix A with the values of another matrix B

1 Ansicht (letzte 30 Tage)
Elysi Cochin
Elysi Cochin am 15 Mai 2022
Bearbeitet: Dyuman Joshi am 15 Mai 2022
Having a matrix A as attached, how to replace all those 1 in A with the values in matrix B, so that i get a new matrix as newA
A(:,:,1) =
0 0 1
0 1 0
0 1 1
A(:,:,2) =
1 0 0
0 0 0
0 0 0
A(:,:,3) =
0 1 0
1 0 1
1 0 0
B = [6 1 5; 2 6 7; 4 6 9];
B =
6 1 5
2 6 7
4 6 9
newA(:,:,1) =
0 0 5
0 6 0
0 6 9
newA(:,:,2) =
6 0 0
0 0 0
0 0 0
newA(:,:,3) =
0 1 0
2 0 7
4 0 0

Akzeptierte Antwort

Bruno Luong
Bruno Luong am 15 Mai 2022
Bearbeitet: Bruno Luong am 15 Mai 2022
A= cat(3, [ 0 0 1;
0 1 0;
0 1 1], ...
[1 0 0,
0 0 0;
0 0 0], ...
[0 1 0;
1 0 1;
1 0 0 ]);
B = [6 1 5; 2 6 7; 4 6 9];
A.*B
ans =
ans(:,:,1) = 0 0 5 0 6 0 0 6 9 ans(:,:,2) = 6 0 0 0 0 0 0 0 0 ans(:,:,3) = 0 1 0 2 0 7 4 0 0

Weitere Antworten (1)

Dyuman Joshi
Dyuman Joshi am 15 Mai 2022
Bearbeitet: Dyuman Joshi am 15 Mai 2022
A(:,:,1) = [0 0 1; 0 1 0; 0 1 1];
A(:,:,2) = [1 0 0; 0 0 0; 0 0 0];
A(:,:,3) = [0 1 0; 1 0 1; 1 0 0];
B = [6 1 5; 2 6 7; 4 6 9];
newA=A.*B
newA =
newA(:,:,1) = 0 0 5 0 6 0 0 6 9 newA(:,:,2) = 6 0 0 0 0 0 0 0 0 newA(:,:,3) = 0 1 0 2 0 7 4 0 0

Kategorien

Mehr zu Data Types finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by