Using cos function in matrix leads to invalid input character

4 views (last 30 days)
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.

Answers (1)

James Tursa
James Tursa on 20 Jun 2016
Edited: James Tursa on 20 Jun 2016
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 Comments
Antoine Compagnie
Antoine Compagnie on 22 Jun 2016
Thank you for considering my question! However, I copied and past what I have written above into the MatLab command line and I didn't had red squares... Actually I even remindhaving written the whole matrix myself!
James Tursa
James Tursa on 22 Jun 2016
Edited: James Tursa on 22 Jun 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]

Sign in to comment.

Categories

Find more on Characters and Strings in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!