Is it possible to solve matrix calculation without defining the Θ
i mean for derivation purpose i want to solve matrices without vlaues instead just sinΘ, cosΘ
so that i can get answer in sinΘ and cosΘ format

 採用された回答

John D'Errico
John D'Errico 2022 年 10 月 23 日
編集済み: John D'Errico 2022 年 10 月 23 日

1 投票

Yes. Learn how to use the symbolic toolbox. If you don't have it, then you need it for this purpose.
syms theta real
A = [cos(theta), sin(theta);-sin(theta), cos(theta)] % simple rotation matrix
A = 
B = A'*A % this product should be the identity matrix
B = 
simplify(B)
ans = 

1 件のコメント

Mujahid
Mujahid 2022 年 10 月 23 日
Thank you I understand now

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMeasurements and Feature Extraction についてさらに検索

製品

タグ

質問済み:

2022 年 10 月 23 日

コメント済み:

2022 年 10 月 23 日

Community Treasure Hunt

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

Start Hunting!

Translated by