Elementwise division in matrix notation
이전 댓글 표시
Dear all,
I am trying to write the following code in matrix notation:
A = B. / C;
A, B and C are column vectors with 1435 rows.
I have already managed to do this with multiplication, i.e.:
D = E.*F;
This is equivalent to
D = diag(F)*E;
Also in this case D, E and F are also column vectors with 1435 rows.
I want to do this because it is more foolproof and does not give results if the dimensions do not match.
Best,
Hylke
댓글 수: 6
Hylke Dijkstra
2022년 1월 28일
Torsten
2022년 1월 28일
If B and C are column vectors of the same length,
A = diag(C)\B
should work fine.
Hylke Dijkstra
2022년 1월 28일
Hylke Dijkstra
2022년 1월 28일
채택된 답변
추가 답변 (1개)
Image Analyst
2022년 1월 28일
편집: Image Analyst
2022년 1월 28일
Try getting rid of the space between the dot and the slash:
A = B ./ C;
If the length of B and C don't match, you might want to consider if you even want to divide them. Like, WHY don't they match? If one is shorter to you want to just assign the "left over" elements to something specific, like 0 or 1 or B or C or something?
댓글 수: 4
Hylke Dijkstra
2022년 1월 28일
Image Analyst
2022년 1월 28일
Yes, sometimes mistakes are made, and wouldn't you want an error to be thrown in those situations? Or would you rather not know about them? Anyway, it can't decide how to proceed upon an error unless you tell it. Like
try
A = B ./ C;
catch ME
% Some code to handle different length vectors, whatever that might be.
end
Usually it doesn't just try to "fix" the problem automatically, which is a good thing because its fix may not be what you were hoping it would do.
Hylke Dijkstra
2022년 1월 28일
Not using diag() will also give an error. Look:
B = rand(10, 1);
C = rand(2, 1);
A = B ./ C;
카테고리
도움말 센터 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
