Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
行行列 (ベクトル) A と別の正方行列 B があります。proc iml などを使用して、SAS で行列 B の各行を行行列 A と乗算するにはどうすればよいですか?
まあ言ってみれば
a = {1 2 3} b = {2 3 4 1 5 3 5 9 10}
私の出力 c は次のようになります。
{2 6 12 1 10 9 5 18 30}
ありがとう!