Azzera filtri
Azzera filtri

How to: Raise Cell array

2 visualizzazioni (ultimi 30 giorni)
Hello kity
Hello kity il 29 Gen 2013
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?

Risposte (2)

Azzi Abdelmalek
Azzi Abdelmalek il 29 Gen 2013
Modificato: Azzi Abdelmalek il 29 Gen 2013
[n,m]=size(num);
txt(end+1:n,:)={''}

Hello kity
Hello kity il 29 Gen 2013
newtxt=txt(3:end,1)
found answer :)
i look to your answer too

Categorie

Scopri di più su Multidimensional Arrays 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!

Translated by