필터 지우기
필터 지우기

Elementwise division in matrix notation

조회 수: 16 (최근 30일)
Hylke Dijkstra
Hylke Dijkstra 2022년 1월 28일
댓글: Image Analyst 2022년 1월 28일
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
Torsten
Torsten 2022년 1월 28일
편집: Torsten 2022년 1월 28일
Maybe of interest if you want to get an error message when using incompatible elementwise operations:
de.mathworks.com/help/coder/ug/optimizie-implicit-expansion-in-generated-code.html
I corrected the internet address.
Hylke Dijkstra
Hylke Dijkstra 2022년 1월 28일
This page does not seem to exist.. Thanks though, it would be helpful.

댓글을 달려면 로그인하십시오.

채택된 답변

Torsten
Torsten 2022년 1월 28일
Backslash \ , not divide /.

추가 답변 (1개)

Image Analyst
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
Hylke Dijkstra 2022년 1월 28일
I do want an error if I accidentally elementwise multiplicate or divide a matrix when the dimensions do not match. That is why I prefer to use matrix tricks (such as using a diagonal matrix) rather than use generalized element wise multiplication or division (i.e. using a dot).
Using matrix tricks gives an error message if I messed up, which I do want!
Image Analyst
Image Analyst 2022년 1월 28일
Not using diag() will also give an error. Look:
B = rand(10, 1);
C = rand(2, 1);
A = B ./ C;
Arrays have incompatible sizes for this operation.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by