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

 Akzeptierte Antwort

John D'Errico
John D'Errico am 23 Okt. 2022
Bearbeitet: John D'Errico am 23 Okt. 2022

1 Stimme

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 = 

Weitere Antworten (0)

Kategorien

Mehr zu Measurements and Feature Extraction finden Sie in Hilfe-Center und File Exchange

Produkte

Tags

Gefragt:

am 23 Okt. 2022

Kommentiert:

am 23 Okt. 2022

Community Treasure Hunt

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

Start Hunting!

Translated by