필터 지우기
필터 지우기

What is difference between x='93'; and x=93; ?

조회 수: 2 (최근 30일)
Kelvin Viroja
Kelvin Viroja 2016년 8월 26일
답변: Guillaume 2016년 8월 26일
Basically I wanna know about each and every detail of MATLAB... So please put details here... What is difference between x=93; x='93';
Thanks in advance...

채택된 답변

Adam
Adam 2016년 8월 26일
x = 93
creates a numeric variable
x = '93'
creates a char variable containing a string.
This should be very easy to see from just trying it in the command window though!

추가 답변 (1개)

Guillaume
Guillaume 2016년 8월 26일
I wanna know about each and every detail of MATLAB. Read the documentation or grab a book from the library.
For your specific question, see fundamental matlab classes. x = 96, creates a numeric variable (a double to be specific), x = '96' creates a char variable.

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by