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