フィルターのクリア

matrix multiplication using bsxfun(@times,a,b)

7 ビュー (過去 30 日間)
summyia qamar
summyia qamar 2016 年 12 月 15 日
回答済み: John D'Errico 2016 年 12 月 15 日
a=[1 0 0 1 0 1 1
0 1 1 1 0 0 1
1 0 0 1 1 0 0
1 0 0 0 1 0 1
1 1 0 0 0 1 0
0 1 0 0 0 1 1]
b=[0 1 0
0 1 0
1 0 0
0 0 1
0 0 1
0 0 1
0 0 1]
c=bsxfun(@times,a,b)
but it is giving error
Error using bsxfun
Non-singleton dimensions of the two input arrays must match each other.
how to multiply (6x7) matrix with (7x3) to get a matrix(6x3)

採用された回答

James Tursa
James Tursa 2016 年 12 月 15 日
編集済み: James Tursa 2016 年 12 月 15 日
Not sure if this is the operation you really want from your description:
a = 6x7 matrix
b = 7x3 matrix
c = a * b; % 6x3 matrix

その他の回答 (2 件)

David Barry
David Barry 2016 年 12 月 15 日
The issue is because both a and b are vectors rather than matrices in the example you have shown there. Presumably what you want is something like:
a = reshape(a, 6, 7);
b = reshape(b, 7, 3);
c = a*b;

John D'Errico
John D'Errico 2016 年 12 月 15 日
Neither of those matrices is either 6x7 or 7x3, so your question is nonsense as written.
Perhaps your intention is that these VECTORS be reshaped into MATRICES of the given sizes. In that case, use reshape, then merely do a simple matrix multiply, using the * operator.
But you cannot use a tool like bsxfun to do something that only you know what you want it to do. Software simply does not work that way.

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by