Quaternions with symbolic elements
Mostrar comentarios más antiguos
I'm trying to create quaternion number that contains symbolic elements but Matlab throws an error.
syms a
d=quaternion(1,2,3,a)
This is the error I get
All inputs to the quaternion constructor must be the same class (double or
single).
1 comentario
James Tursa
el 1 de Feb. de 2022
Editada: James Tursa
el 1 de Feb. de 2022
What do you intend to do with these symbolic quaternions downstream in your code? It would be pretty easy to write your own basic functions such as add, subtract, multiply, conjugate, inverse, etc. But if you intend to convert them to other forms such as direction cosine matrix or Euler angles then you will run into major difficulties.
Respuesta aceptada
Más respuestas (1)
Bruno Luong
el 5 de Nov. de 2024
0 votos
Work around is use 2 x 2 (symboloc) complex matrix to do quaternion computation https://en.wikipedia.org/wiki/Quaternion#Matrix_representations
Categorías
Más información sobre Coordinate Transformations en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!