when i execute ,error??? Error: File: ant.m Line: 2 Column: 6 The input character is not valid in MATLAB statements or expressions.
정보
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
이전 댓글 표시
답변 (1개)
ES
2013년 8월 23일
Check your unicode settings and keyboard. The quote in your is something different.
Reference: uint16('’')%this is your quote
yields ans =
8217
whereas, the normal quote (of ASCII/Unicode set) yields this,
uint16('''') %Normal Quote, uint8 would suffice as it is ANSI/Unicode
ans =
39
댓글 수: 0
이 질문은 마감되었습니다.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!