How to: Raise Cell array
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (2)
Azzi Abdelmalek
il 29 Gen 2013
Modificato: Azzi Abdelmalek
il 29 Gen 2013
[n,m]=size(num);
txt(end+1:n,:)={''}
0 Commenti
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!