copy from workspace to csv file without loss of significant figures
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dries billiet
le 20 Mar 2014
Commenté : Mischa Kim
le 20 Mar 2014
Hello,
I am trying to copy an array to excell using the csvwite function. It works very good and fast, BUT I am losing a lot of significant figures. I only keep 5 of them. This means a significant loss of data for my solution. I tried ctrl+C but matlab fails (stops working, have to restart matlab) It is a rather big array of 30.000+ values (double) Is there a way to copy it to a file without losing the data?
0 commentaires
Réponse acceptée
Mischa Kim
le 20 Mar 2014
Modifié(e) : Mischa Kim
le 20 Mar 2014
Dries, how about using dlmwrite?
data = rand(3000,10);
dlmwrite('test.csv',data,'precision',15);
Plus de réponses (1)
Dries billiet
le 20 Mar 2014
1 commentaire
Mischa Kim
le 20 Mar 2014
When you say words, do you mean strings (and not doubles)? What happens when you execute the code from my answer?
Voir également
Catégories
En savoir plus sur Startup and Shutdown 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!