필터 지우기
필터 지우기

How to divide a matrix by certain numbers?

조회 수: 1 (최근 30일)
Royvg94
Royvg94 2015년 9월 23일
댓글: Star Strider 2015년 9월 23일
I want to divide a matrix by a column vector in this way:
(4 2 3 8;7 9 1 5;6 4 8 3) / (4;8;2)
and then the result i want to get is:
(4/4 2/4 3/4 8/4;7/8 9/8 1/8 5/8;6/2 4/2 8/2 3/2)

채택된 답변

Star Strider
Star Strider 2015년 9월 23일
Try this:
A = [4 2 3 8;7 9 1 5;6 4 8 3];
B = [4;8;2];
format rat
Q = bsxfun(@rdivide, A, B)
Q =
1 1/2 3/4 2
7/8 9/8 1/8 5/8
3 2 4 3/2
  댓글 수: 2
Royvg94
Royvg94 2015년 9월 23일
What means format rat? And what does it do?
Star Strider
Star Strider 2015년 9월 23일
The format rat sets the format in the Command Window to rational fraction approximation, since I thought that is what you wanted. (See the documentation on format for a full description of that and other options.) This just affects the Command Window output, and full double-precision representation is maintained internally.

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

추가 답변 (1개)

Thorsten
Thorsten 2015년 9월 23일
A./repmat(v, 1, size(A, 2))
  댓글 수: 2
Royvg94
Royvg94 2015년 9월 23일
Can you explain this a bit more?
Thorsten
Thorsten 2015년 9월 23일
You expand the column vector v to the size of the matrix by replicating it using repmat, then you use point-wise division ./

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by