필터 지우기
필터 지우기

how to transpose gui data ?

조회 수: 1 (최근 30일)
Tayyaba Abro
Tayyaba Abro 2021년 2월 13일
답변: Walter Roberson 2021년 2월 14일
I am reading excel file and showing data on GUI. My data is shown vertically but I want it horizontally. I tried to transpose it but it still showing vertically. How can I do that ? Please help.
here is my code:
[~,~,icd]=xlsread('icd.xlsx','Sheet1','B4:B21');
bytes=transpose(icd)
set(handles.packet,'String',bytes)
ouptut
  댓글 수: 2
Jan
Jan 2021년 2월 13일
What is the contents of "icd"? What is the wanted output?
Tayyaba Abro
Tayyaba Abro 2021년 2월 14일
content of icd is same as it is shown in output as it is shown in 1 column I want to be in 1 row.

댓글을 달려면 로그인하십시오.

답변 (1개)

Walter Roberson
Walter Roberson 2021년 2월 14일
Your icd is currently a cell array of character vectors, and is being displayed to a uicontrol style 'text' or style 'edit' in which Max has been set to at least 2 (otherwise you would have received an error.)
When you set the String property of a uicontrol text or edit to a cell array of character vectors, it will effectively automatically reshape the cell array to be a column, with one entry of the cell array being presented per row.
If you want separate cell array character vectors entries to be presented in a row, then you need one uicontrol per column, or you need to switch to uitable()
The alternative is to join the contents together into one character vector or string. If you do that, you lose the internal boundaries unless you deliberately preserve them.
bytes = strjoin(icd, ' '); %cannot tell the boundaries between original entries
or
bytes = strjoin(icd, '|'); %boundaries are visually preserved. You might want ' | ' instead.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by