Display arrays in app designer edit text
조회 수: 15 (최근 30일)
이전 댓글 표시
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
Mario Malic
2021년 2월 17일
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.
답변 (1개)
Deepak
2024년 9월 3일
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!