Creating new array from individual string outputs

조회 수: 3 (최근 30일)
Joseph
Joseph 2014년 11월 10일
답변: Image Analyst 2014년 11월 10일
I'm trying to write a script that looks through two excel documents and finds strings that are in the first document but aren't in the second. I have been successful in doing this, however I can't figure out how to display the strings in a new array. This is what I have so far:
if true
% code
end
[num1,excel1,raw1] = xlsread('excel1');
[num2,excel2,raw2] = xlsread('excel2');
end
names1 = excel1(:,1);
names2 = excel1(:,1);
for k = 1:length(names);
match = strmatch(names1(k),names2);
if rem(match,1) == 0
else x = names1(k)
end
end

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 11월 10일
편집: Azzi Abdelmalek 2014년 11월 10일
end
[num1,excel1,raw1] = xlsread('excel1');
[num2,excel2,raw2] = xlsread('excel2');
end
names1 = excel1(:,1);
names2 = excel1(:,1);
x={}
for k = 1:length(names);
match = strmatch(names1(k),names2);
if rem(match,1) == 0
else x(end+1) = names1(k)
end
end

추가 답변 (1개)

Image Analyst
Image Analyst 2014년 11월 10일
What do you mean by "how to display the strings"? Some ways:
  1. You can use fprintf(),
  2. Or just put the name of the array on its own line and it will spit it out to the command window.
  3. Or you can just look in the variable editor (double click on the variable name in the workspace to bring it up) and it will display it for you in a table/grid/spreadsheet style.
  4. Or you can use the function celldisp().
Would one of those ways work for you? There are other ways if you want to use a GUI, such as
  1. an edit box,
  2. a static text label,
  3. a uitable,
  4. a listbox, etc.

카테고리

Help CenterFile Exchange에서 File Operations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by