Getting data in real time

1 vue (au cours des 30 derniers jours)
Mahesh
Mahesh le 25 Fév 2014
Modifié(e) : dpb le 25 Fév 2014
Is it possible to get integer data in Matlab R2010a during program execution as in C/C++

Réponses (1)

dpb
dpb le 25 Fév 2014
Yes
  2 commentaires
Mahesh
Mahesh le 25 Fév 2014
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 le 25 Fév 2014
Modifié(e) : dpb le 25 Fév 2014
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"...

Connectez-vous pour commenter.

Catégories

En savoir plus sur Startup and Shutdown dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by