Effacer les filtres
Effacer les filtres

how to write increment operator in matlab to read files one after antother..help

1 vue (au cours des 30 derniers jours)
SANKAR JYOTI NATH
SANKAR JYOTI NATH le 16 Nov 2016
Commenté : Jan le 16 Nov 2016
how to write this type of function in matlab
for(i=0;i<20;i++)

Réponses (1)

dpb
dpb le 16 Nov 2016
Modifié(e) : dpb le 16 Nov 2016
Just translate...
for i=0:19
...
i will take on the values in succession automagically and can be used in the loop.
NB: Matlab arrays, however, are 1-based, not 0-based, so the above will fail if try to write
for i=0:19
value=someoperationon(a(i));
with indexing error "Subscript indices must either be real positive integers or logicals."
If, however, the idea is to read a series of files with successive numeric values in the file names somehow using this to generate names, that's not recommended practice in Matlab for variables and the like altho can be done for file names. But, generally are easier ways, dir with a suitable wildcard pattern being one of the best. See the FAQ <Process sequence of files>

Catégories

En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by