필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

GUIDE - Reading from excel sheet rows and store them

조회 수: 1 (최근 30일)
Ali Jaber
Ali Jaber 2016년 4월 4일
마감: MATLAB Answer Bot 2021년 8월 20일
I am reading from an excel sheet , I wrote this line to get the rows of matrix m, so that I have to send it (the matrix) as input to a function. But after the loop is ended all rows are considered as one row! I have to separate them by ';' and stores all of them in an array.
for i=1:10
data = xlsread(filename);
m=data(i,:);
handles.m=m;
guidata(hObject,handles)
end
So this is what I tried :
a{i} = strcat(m{i},';');
handles.a=a;
I was thinking that by this way after each row a semi comma will be added. But it doesn't work. How can I do that?

답변 (1개)

Walter Roberson
Walter Roberson 2016년 4월 4일
No loop.
data = xlsread(filename);
handles.m = data;
guidata(hObject, handles);
  댓글 수: 2
Ali Jaber
Ali Jaber 2016년 4월 4일
I want to read by rows not columns
Walter Roberson
Walter Roberson 2016년 4월 4일
The above gives you an array with the same layout as you have in the spreadsheet. The things that appear across rows in the spreadsheet will appear across rows in the array.
If you need to switch the order then
handles.m = data.';
however that would be "by column" rather than "by row".

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by