Calculate power of exponential
古いコメントを表示
How can i calculate
, if A=[8 7 0] and B=[2 12 1];
I tried this code:
A = [8 7 0];
B = [2 12 1];
C = exp(A)
C*B
Matlab keeps giving error: Inner matrix dimensions must agree.
採用された回答
その他の回答 (1 件)
Mike
2021 年 4 月 23 日
2 投票
C.*B
* by itself means matrix multiply
.* means multiply individual terms
カテゴリ
ヘルプ センター および File Exchange で Operators and Elementary Operations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!