Getting data in real time

조회 수: 2 (최근 30일)
Mahesh
Mahesh 2014년 2월 25일
편집: dpb 2014년 2월 25일
Is it possible to get integer data in Matlab R2010a during program execution as in C/C++

답변 (1개)

dpb
dpb 2014년 2월 25일
Yes
  댓글 수: 2
Mahesh
Mahesh 2014년 2월 25일
I have tried using inputdlg but the input I give is not read as an integer. So which function should I use for this purpose
dpb
dpb 2014년 2월 25일
편집: dpb 2014년 2월 25일
Matlab doesn't strongly type variables and Matlab is NOT C/C++ (nor Fortran nor any other language specifically). The default numeric value is a double. There's nothing wrong in general in storing an integer in a double and going on--that's almost always how it's done in Matlab.
If there's some specific reason you must have an integer, then use one of the intN casting functions to cast to the desired type.
Why must it actually be an integer; you can always also use fix or round to ensure the user input is an integer value on return.
I don't actually mess w/ GUIs and so whether there's a more restrictive dialog pre-packaged in Matlab that handles preventing a user from entering anything except digits I'm unaware.
You might look on the File Exchange for such enhancements if that's what you're actually asking for.
ADDENDUM: Indeed,
may be "the cat's meow"...

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by