필터 지우기
필터 지우기

matrix dividing

조회 수: 2 (최근 30일)
athpapa -
athpapa - 2011년 11월 14일
If I have a big matrix like this: A=ones(1,450000). How can I divide it in 300 equal parts (1, 1500) and multiple these 300 parts (arrays) with a matrix with dimensions B=(1,300)?
Thank you...

답변 (1개)

Fangjun Jiang
Fangjun Jiang 2011년 11월 15일
A=ones(1,450000);
NewA=reshape(A,300,[]);
C=B*NewA;
  댓글 수: 2
athpapa -
athpapa - 2011년 11월 15일
with the reshape that you told me, I want now to multiple the first column of array B with the first only line of array NewA, and so on...the 2nd column of array B with the 2nd only line of NewA. Do you know how can I do this??
Thankssssss
Fangjun Jiang
Fangjun Jiang 2011년 11월 15일
Use this example to understand the row and column
Assume B=magic(3)
B(:,1) is the first column of B, B(:,2) is the second column,...
B(1,:) is the first row of B, B(2,:) is the second row, ...

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

카테고리

Help CenterFile Exchange에서 Structures에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by