Hi, I have a matrix A(7x1001) and a matrix B(1x7).
I'd like to divide the first row of A for the first colum(element) of B,
second row of A for the second column in B, and so on.
A and B are in attached

 採用された回答

per isakson
per isakson 2019 年 12 月 11 日

0 投票

Try
C = A ./ reshape( U2, [],1 );

5 件のコメント

Paul Rogers
Paul Rogers 2019 年 12 月 12 日
thanks but not working.
Guillaume
Guillaume 2019 年 12 月 12 日
not working is a completely useless statement on its own.
It's not working because...
  • you get an error, if so what is the full text of the error message?
  • not giving you the result you expected, if so what did you get and how does it differ from what you expected?
We can't see your screen so can't guess why it's not working.
Completely unrelated, if A is 7x1001 why isn't B 7x1 instead of 1x7 to be consistent?
Paul Rogers
Paul Rogers 2019 年 12 月 12 日
sorry, I get this:
Error using ./
Matrix dimensions must agree.
A is 7x1001 and B is 1x7
Guillaume
Guillaume 2019 年 12 月 12 日
Oh, you're on a very old version, which doesn't have implicit expansion:
C = bsxfun(@rdivide, A, B(:));
However, again, why isn't B a column vector (7x1) instead of a row vector (1x7)? This would avoid the transpose/reshape and would make it consistent with the shape of A.
Paul Rogers
Paul Rogers 2019 年 12 月 12 日
thanks man it's this!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeCreating and Concatenating Matrices についてさらに検索

製品

リリース

R2014b

質問済み:

2019 年 12 月 11 日

コメント済み:

2019 年 12 月 12 日

Community Treasure Hunt

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

Start Hunting!

Translated by