How to: Raise Cell array
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I use xlsread to read an excel file
[num txt]= xlsread(xxx);
num and txt arent alligned so I need to raise txt cell array 3 rows to have the same rows/indices with num.
how can i do this?
0 Kommentare
Antworten (2)
Azzi Abdelmalek
am 29 Jan. 2013
Bearbeitet: Azzi Abdelmalek
am 29 Jan. 2013
[n,m]=size(num);
txt(end+1:n,:)={''}
0 Kommentare
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!