save all ans of for loop
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Amr Hashem
le 11 Mai 2015
Commenté : Star Strider
le 12 Mai 2015
i split a text in cells into words cell1 "text" cell2 "text" cellE "text" but it gives me the last ans only how i can save all the rows
i try:
[num text data]= xlsread('result.xlsx','1') %import data from excel
[R C]=size(data);
for E=1:R % no of rows
d= regexp(data{E,6},'[ ]*','split');
end
how i can save all the answers?
0 commentaires
Réponse acceptée
Star Strider
le 11 Mai 2015
Save ‘d’ as a cell array:
d{E} = regexp(data{E,6},'[ ]*','split');
5 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Cell Arrays dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!