How to input multiple values into Edit Field in APP Designer?

23 views (last 30 days)
Hello everyone,
now I'd like to make a simple calculation in App Designer. For example, the function ist y=x+1. Can I enter multiple x (1,2,3......) in the Numeric Edit Field, and then, when I click a button, the multiple results y are calculated in another Edit Field.
I hope for you help! Thanks!
Best Regards
Xiao
  2 Comments
Patrizio Graziosi
Patrizio Graziosi on 27 Jan 2020
If the inputted array is in the form 100:10:1000, the solutions proposed in the link in the answer do not work, and I cannot work it out...
Do someone have an idea to sort this out?
Thanks
Alfonso Gomez Puello
Alfonso Gomez Puello on 24 Jul 2020
You could maybe ask for the initial and final value of x in two different Edit Fields, and with a "for" using those parameters, run your function.

Sign in to comment.

Accepted Answer

Sahithi Kanumarlapudi
Sahithi Kanumarlapudi on 20 Jan 2020
Edit field treats the data entered a single string (if style is not specified as numeric). So you could possibly write a callback to the edit field which parses the string and convert them into Numerics and hence compute required functionality with them.
Referring to the following link might help you

More Answers (0)

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!