cell containg comma separated value in excel

2 views (last 30 days)
vikas
vikas on 9 Mar 2017
Edited: KSSV on 9 Mar 2017
i am working on excel having cells containing comma separated values like A1=1,2,3,4,5,6 and B1=3,4,5,6,7,9. i have to perform union , intersection operation on these cells. plz help me thanks and regards

Answers (1)

KSSV
KSSV on 9 Mar 2017
Read about xlsread, csvread, union, intersection. Your problem is pretty easy and straight forward.
  3 Comments
KSSV
KSSV on 9 Mar 2017
You can arrange them, into one cell after you get. Attach the file and your code.
vikas
vikas on 9 Mar 2017
Edited: KSSV on 9 Mar 2017
thanks for the reply
% i imported tha data directly to workspace as textdata
%data of first lecture
I=textdata(:,2);
II= txtdata(:,3); % data of second lecture
% now performing the union for cell (9,8) in excel fine by coding)
f1=fopen('record.xls')
textdata{9,8}= union(I,II);
% after this everything went wrong and even dont get the idea to save union
% operation in excel directly

Sign in to comment.

Categories

Find more on Data Import from MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!