Compare editfield.value to table values in app designer
Mostra commenti meno recenti
Hello.
I wanna make an app that is comparing a value(from editfield numeric) to a table imported from excel. The table has 3 columns (z , f , d). The value has to be found in the z column. If found, the f and d colums values coresponding to z has to be displayed. Can you help me? It's my first app made in app designer.
5 Commenti
Mario Malic
il 16 Giu 2021
Please see the tutorials and simple apps, or maybe program it without App Designer at first. Once you're able to write the code, you can easily move it to App Designer.
Steps:
- Import the file in a variable or table with readtable
- Compare a single value with vector elements a == b. Output is logical array that may have true values on some indices
- Use info from step two to return the values you need.
Andrei Iulian
il 16 Giu 2021
Data in UITable component is held in property Data which is an array, so access third column of it this way
idx = app.EditField.Value == app.UITable.Data(:,3);
Idx will give you logical array.
a = [1 2 3 4];
b = 2;
idxRow = find(b == a)
Use it to index into particular row of the Data.
Andrei Iulian
il 17 Giu 2021
Mario Malic
il 17 Giu 2021
Show complete error. I don't see eq anywhere
Risposte (0)
Categorie
Scopri di più su Develop Apps Using App Designer in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!