How to add, multiply and subtract two matrices have different length ?
Ältere Kommentare anzeigen
If I have matrix A =[2 2 1; 1 2 5; 1 2 3], B=[1 2; 1 1],
How can I add or subtract these matrices while they have different length ?
1 Kommentar
Torsten
am 13 Mär. 2022
Mathematical, there are no such operations for matrices of different sizes.
So you first will have to explain us how you intend to define these "additions and subtractions".
Akzeptierte Antwort
Weitere Antworten (1)
Image Analyst
am 26 Mär. 2022
Perhaps this is what you want -- to subtract the upper left parts that overlap.
A = [2 2 1; 1 2 5; 1 2 3]
B = [1 2; 1 1]
[rowsA, colsA] = size(A)
[rowsB, colsB] = size(B)
maxRow = max([rowsA, rowsB])
maxCol = max([colsA, colsB])
% Pad dimensions if nexessary
if rowsA > rowsB
B(maxRow, end) = 0;
[rowsB, colsB] = size(B) % Update size
elseif rowsB > rowsA
A(maxRow, end) = 0;
[rowsA, colsA] = size(A) % Update size
end
if colsA > colsB
B(end, maxCol) = 0;
[rowsB, colsB] = size(B) % Update size
elseif colsB > colsA
A(end, maxCol) = 0;
[rowsA, colsA] = size(A) % Update size
end
% Let's see what they are now:
A
B
% Now do the subtraction of the upper left overlapping parts.
C = A - B
You get:
A =
2 2 1
1 2 5
1 2 3
B =
1 2 0
1 1 0
0 0 0
C =
1 0 1
0 1 5
1 2 3
Kategorien
Mehr zu Calendar finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!