Multiply matrix with variables

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 个评论

Just look at the result! I don't really understand what you are asking.

请先登录,再进行评论。

 采纳的回答

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 个)

类别

帮助中心File Exchange 中查找有关 R Language 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by