num2str gives error as 'from struct to double conversion is not possible'
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Selma Nur Keskin
le 8 Juil 2020
Modifié(e) : Selma Nur Keskin
le 8 Juil 2020
Hello everyone. I have a number of data files(pdbs) named as 1.pdb 2.pdb 3.pdb etc.. so I want to read all of them in a loop. Can someone explain why this does not work?
pdb= zeros;
for i=1:1000;
pdb(i,1) = pdbread([int2str(i) '.pdb']);
i=i+1;
end
it says 'Conversion to double from struct is not possible.'
thank you
0 commentaires
Réponse acceptée
madhan ravi
le 8 Juil 2020
Modifié(e) : madhan ravi
le 8 Juil 2020
pdb= cell(1e3, 1);
for ii = 1 : 1e3;
pdb{ii} = pdbread(sprintf('%d.pdb', ii));
end
1 commentaire
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Power and Energy Systems 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!