csvwrite/dlmwrite Cannot Open File
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hello everyone,
I'm trying to write a matrix to a CSV file but I keep getting an error saying the file cannot be opened. There are a lot of other posts bout this error but I still can't seem to get it working. Below is the code I've typed into the command window.
>> R = [1,2,3;4,5,6;7,8,9];
>> csvwrite('txt.csv', R)
Error using dlmwrite (line 130)
Could not open file txt.csv
Error in csvwrite (line 43)
dlmwrite(filename, m, ',', r, c);
>>
I can't understand why this error keeps occurring. Any help would be appreciated!
2 Commenti
Hikaru
il 30 Gen 2015
Modificato: Hikaru
il 30 Gen 2015
I cannot reproduce your error.
Error using dlmwrite (line 130)
^ Why did MATLAB tell you that you have error in dlmwrite when you're calling csvwrite? Did you copy everything and post them here? Try clearing your workspace and see if
>> R = [1,2,3;4,5,6;7,8,9];
>> csvwrite('txt.csv', R)
if it produce the same error?
And maybe you should check that you are in the correct MATLAB path. If you don't have permission to write in that folder, maybe that's the source of your problem.
Gokul Manappetty Syamalan
il 3 Mar 2021
I also had same issue and fixed by correcting the path.
Please click on the saved file and right click and add to path. It will work. !!
Risposte (3)
Ninjan
il 12 Mar 2015
I got the exact same error as Hikaru. Can not figure out why. I have the permission to write, it is also in the folder as other files from MATLAB is created. The path is included in MATLAB.
Regards, Ninjan
1 Commento
Gokul Manappetty Syamalan
il 3 Mar 2021
Its path error sir, Please click on saved file or add current path and try again it will work.
Arthur Ryzak
il 6 Apr 2019
I got that same error for my data and for the code Hikaru posted. Turned out my current folder was root. Type pwd and make sure your current folder is the one you think it is.
0 Commenti
Yohanna Rodriguez
il 26 Apr 2019
Well, I had the same problem but I fixed it as soon as I changed the folder to the one I normally use for my Matlab files
0 Commenti
Vedere anche
Categorie
Scopri di più su Text Files 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!