フィルターのクリア

Multiply matrix with variables

1 回表示 (過去 30 日間)
Tea Arrigoni
Tea Arrigoni 2017 年 12 月 20 日
回答済み: Torsten 2017 年 12 月 20 日
Hi
I want to present how in the end the result matrix looks like by multiplying three matrix. Is there a possibility for MAtlab to show me in the end how the final matrix will look like with this variables?
%RA*RR*RF
RA=[COSFA 0 SINFA; 0 1 0;-1*SINFA 0 COSFA]
RR=[COSFR -1*SINFR 0; SINFR CONFR 0;0 0 1]
RF=[1 0 0; 0 CONF -1SINF; 0 SINF COSF]
RA*RR*RF
  1 件のコメント
Adam
Adam 2017 年 12 月 20 日
Just look at the result! I don't really understand what you are asking.

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

採用された回答

Torsten
Torsten 2017 年 12 月 20 日
syms COSFA SINFA COSFR SINFR COSF SINF
RA=[COSFA 0 SINFA; 0 1 0; -SINFA 0 COSFA];
RR=[COSFR -SINFR 0; SINFR CONFR 0;0 0 1];
RF=[1 0 0; 0 COSF -SINF; 0 SINF COSF];
RESULT=RA*RR*RF
Best wishes
Torsten.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGaussian Process Regression についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by