filling the cells of a column of strings
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dear all,
I have a column of string variables
'01-01-2001'
'23-11-2008'
'21-12-2008'
'18-01-2009'
and I want to fill the 1rst, 40th, 79th and so forth position of this column as follows
for j=1:hhhh*qqqq*uuu
mdata1{39*j-38,11}='01-01-2001';
end
but it is too slow. Any quicker code?
thanks
0 commentaires
Réponse acceptée
Oleg Komarov
le 27 Mai 2012
You don't need a for loop:
mdata1(1:39:hhhh*qqqq*uuu,11) = {'01-01-2001'};
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Whos 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!