quaterions to string in matlab
3 views (last 30 days)
Show older comments
i need a function like num2str for quaterions in matlab u can help me
2 Comments
James Tursa
on 7 Jun 2016
Edited: James Tursa
on 7 Jun 2016
How are your quaternions stored? Can you give an example of an input and desired output?
Accepted Answer
James Tursa
on 8 Jun 2016
I still don't know how your quaternions are stored. Maybe a class object? However, one thing you might try is converting it to a double first before calling num2str. E.g., if network.sumsqrerr(n) is a quaternion, then maybe try this formulation:
num2str(double(network.sumsqrerr(n)) / size(inputs, 2))
0 Comments
More Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!