Azzera filtri
Azzera filtri

save all ans of for loop

1 visualizzazione (ultimi 30 giorni)
Amr Hashem
Amr Hashem il 11 Mag 2015
Commentato: Star Strider il 12 Mag 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?

Risposta accettata

Star Strider
Star Strider il 11 Mag 2015
Save ‘d’ as a cell array:
d{E} = regexp(data{E,6},'[ ]*','split');
  5 Commenti
Amr Hashem
Amr Hashem il 12 Mag 2015
thank you very much in arabic جزاكم الله خيرا
Star Strider
Star Strider il 12 Mag 2015
My pleasure!

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices 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