How to: Raise Cell array
Mostrar comentarios más antiguos
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?
Respuestas (2)
Azzi Abdelmalek
el 29 de En. de 2013
Editada: Azzi Abdelmalek
el 29 de En. de 2013
[n,m]=size(num);
txt(end+1:n,:)={''}
Hello kity
el 29 de En. de 2013
1 comentario
Azzi Abdelmalek
el 29 de En. de 2013
Look at edited answer
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!