フィルターのクリア

i have two different array holding some numbers, e.g; i have an array P containing 5 elements and other Q containing 6 elements. I want to find out P*Q matrix

2 ビュー (過去 30 日間)
Eg;
P= [1 2 3 4 5 ];
Q=[8 9 5 7 3 4];
output like
1 2 3 4 5
8 1*8 2*8 3*8 4*8 5*8
9 1*9 2*9 .....................5*9
5 1*5 2*5 ......................5*5
7 1*7 2*7 .....................5*7
3 1*3 .................................3*5
4 1*4..................................5*4

採用された回答

Mathieu NOE
Mathieu NOE 2021 年 10 月 14 日
P= [1 2 3 4 5 ];
Q=[8 9 5 7 3 4];
T = (P'*Q)'
  3 件のコメント
John D'Errico
John D'Errico 2021 年 10 月 14 日
編集済み: John D'Errico 2021 年 10 月 14 日
Or, simpler yet, since (A * B)' = B' * A
T = Q' * P;

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by