Separate Cell Into Multiple Rows
Show older comments
I wolud like to separete cell arry of my data.
I have a Data excel file with Old and New sheets with old values and new values.
I was trying to compare both the Test values from Old and New sheet values and Generate a new excel file with Name, Previous value and Present value.
I am getting 44by1 cell. Please help me out to separete 44by 1 in each row.
My final output sjold be look like:
Test 140.400 152
144.400 152
148.400 152
.........
Thank you .

Answers (1)
KSSV
on 26 Aug 2020
[txt,num,raw] = xlsread(file) ;
num
Or
T = readtable(file) ;
T.1
Categories
Find more on MATLAB Report Generator 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!