Display arrays in app designer edit text
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
A=[ y1 y2 y3 y4 y5];
U= A>maxVal;
L= A<minVal;
x= find(U);
y= find(L);
R= union(outU,outL);
My code is running properly upto this but I can't find a way to display this in appdesigner edit text. I need the result of R, which may be a row matrix with multiple columns, be displayed in an edit text box of matlab app designer. Thank you in Advance for your help.
1 Commento
Mario Malic
il 17 Feb 2021
Use TextArea component for it to reliably display the array. See num2str to convert your array to char array to display it in the TextArea.
Risposte (1)
Deepak
il 3 Set 2024
I understand that you have written a MATLAB code to generate a row matrix with multiple columns, and you want to display the matrix in an Edit Field (Text) in the App Designer.
To achieve this, you should first convert the matrix into string representation with the help of “mat2str()” function. This is useful for displaying the contents of a matrix in a text field. Then, you can assign the result to “app.EditField.Value” to display it in Edit Field(Text). Additionally, you can place the entire code in the “startupFcn()” callback of your app, so that it executes on startup of the application.
Here is the MATLAB code that addresses the task:
% Convert R to a string
R_str = mat2str(R);
% Set the value of the edit text field
app.EditField.Value = R_str;
Attaching the documentation of “mat2str” for reference:
I believe this will fix the issue.
0 Commenti
Vedere anche
Categorie
Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!