a problem with transpose of Symbolic matrix

16 ビュー (過去 30 日間)
binbin cao
binbin cao 2021 年 9 月 14 日
コメント済み: binbin cao 2021 年 9 月 14 日
this is my code
clc
clear all
syms mc m0 ms l h t dxita(t) xita(t) xita0 g n ii temp1 temp2
r0=[l/4*cosd(xita);l/4*sind(xita)];
dfr0=diff(r0,t);
ri=[0;ii*l*sind(xita)];
dfri=diff(ri,t);
j=1/12*mc*l^2;
tigz=1/2*j*dxita^2;
tigy=1/2*mc*(dfri'*dfri)
tigy(t) = 
tigy1=1/2*mc*(transpose(dfri)*dfri)
tigy1(t) = 
what's the meaning of the line on ii l ~, what's the differences of ' and transpose, are these two results the same,
thank you!

採用された回答

Chunru
Chunru 2021 年 9 月 14 日
The bar over the variable means complex conjugate. ' means complex conjugate transpose, while traspose or .' means transpose without conjugating.
  1 件のコメント
binbin cao
binbin cao 2021 年 9 月 14 日
got it, thank you!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAssumptions についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by