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.
私はMATLABを初めて使用し、次のコード行を理解するのに苦労しています。
ef = sum(X.*(A*X), 1)';
.乗算演算子の前のドット( )と'、右括弧の後のアポストロフィ()のセマンティクスは何ですか?
.
'
'転置の意味:A'はtranspose(A)
A'
transpose(A)
と.*は要素ごとの乗算です。(*は行列の乗算です)
.*
*