Effacer les filtres
Effacer les filtres

How can I fill in a matrix with the data of a multiline edittext box?

1 vue (au cours des 30 derniers jours)
sadel
sadel le 19 Nov 2013
Commenté : sadel le 20 Nov 2013
Hello, I have a gui with a multiline edittext box and I want for example to write on three lines 9 numbers (3 numbers on each line) and to create a 3x3 matrix. How can I do that? I know that an edittext box get strings but how can my program count the written lines of my edittext, and then create a matrix with the transformed strings to numbers?
kind regards!

Réponse acceptée

Walter Roberson
Walter Roberson le 19 Nov 2013
get(EditBoxHandle, 'String') is going to return a cell array of strings. length() of the cell array will tell you how many lines there are.
You will need to convert the strings to numbers. See sscanf()
  1 commentaire
sadel
sadel le 20 Nov 2013
Thank you for your answer, instead of sscanf() I used the str2num(). The results were a little bit better.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Text Data Preparation 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