Display arrays in app designer edit text

5 Ansichten (letzte 30 Tage)
Sikder Meaghi
Sikder Meaghi am 17 Feb. 2021
Beantwortet: Deepak am 3 Sep. 2024
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 Kommentar
Mario Malic
Mario Malic am 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.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Deepak
Deepak am 3 Sep. 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 thestartupFcn()” 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.

Kategorien

Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by