when i execute ,error??? Error: File: ant.m Line: 2 Column: 6 The input character is not valid in MATLAB statements or expressions.

답변 (1개)

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

이 질문은 마감되었습니다.

질문:

2013년 8월 23일

마감:

2021년 8월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by