Using cos function in matrix leads to invalid input character
Afficher commentaires plus anciens
I have an unexpecetd error when trying to
>> Rz= [cos(0.2) -sin(0.2) 0; sin(0.2) cos(0.2) 0; 0 0 1]
Rz= [cos(0.2) -sin(0.2) 0; sin(0.2) cos(0.2) 0; 0 0 1]
↑
Error: The input character is not valid in MATLAB statements or
expressions.
Réponses (1)
James Tursa
le 20 Juin 2016
Modifié(e) : James Tursa
le 20 Juin 2016
0 votes
You have special unprintable characters between the "cos" and the "(" characters, and between the "sin" and the "(". You need to delete these. E.g., just copy and paste what you have written above into the MATLAB command line and you will see them as red squares. I am guessing you didn't type this in by hand originally, but copied it from a document or web page and didn't realize those special characters were there.

2 commentaires
Antoine Compagnie
le 22 Juin 2016
James Tursa
le 22 Juin 2016
Modifié(e) : James Tursa
le 22 Juin 2016
The characters are definitely there. Try typing it in again from scratch. Or just copy and paste this which has those special characters removed:
Rz= [cos(0.2) -sin(0.2) 0; sin(0.2) cos(0.2) 0; 0 0 1]
Catégories
En savoir plus sur Operators and Elementary Operations dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!