Why does dlmread fail to import my csv files using my matlab 2016b installation when the same code works properly in my 2016a installation?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I'm importing a csv file using the following call: data = csvread(csvFilename.csv',5,0);
I'm skipping rows to leave out header information. Beginning on the 5th row of the file (base 0), there is a 197x23 array of numbers. The above function call works in my 2016a installation, but in 2016b, I get the error "Error using dlmread (line 147) Undefined function 'matlab.io.text.internal.collectOutput' for input arguments of type 'cell'."
Stepping through dlmread in debug mode in 2016a and 2016b, I didn't see any differences in the values of workspace variables during my function call.
The command "which matlab.io.text.internal.collectOutput" returned "'matlab.io.text.internal.collectOutput' not found." in the 2016a and 2016b installation.
Any ideas for troubleshooting?
4 Commenti
Jianbin Tang
il 6 Dic 2016
Hi, I have the same problem. Environment: CentOS 7
The problem only happen in 2016b. I tried 2016a and 2015b and works fine.
Risposta accettata
Jeremy Hughes
il 1 Nov 2016
This sounds like an installation issue. The missing function should be installed with MATLAB. You may want to reinstall MATLAB, or contact support.
Più risposte (1)
Jianbin Tang
il 6 Dic 2016
Modificato: Jianbin Tang
il 6 Dic 2016
From the error message, it seems like the MATLAB function 'matlab.io.text.internal.collectOutput' is not present on the MATLAB path. To verify this, please type the following command at the MATLAB command prompt:
>> which -all matlab.io.text.internal.collectOutput
If the output of running the above-mentioned command is something like " 'matlab.io.text.internal.collectOutput' not found" then it means the particular function is not present on the MATLAB path.
Since the above built-in function is not found, to restore the MATLAB path to its default, please execute the following three commands in the MATLAB command prompt.
>> restoredefaultpath
>> rehash toolboxcache
>> savepath
Please note that running these commands will remove any custom paths added to the MATLAB path, please refer the following documentation link on instructions about how to backup custom path: http://www.mathworks.com/matlabcentral/answers/166871-how-will-running-the-restoredefaultpath-and-savepath-commands-affect-my-custom-paths-and-how-do-i-ba
To verify that the 'matlab.io.text.internal.collectOutput' function is added to the path, please run the following command:
>> which -all matlab.io.text.internal.collectOutput
If the path is reset correctly, you should see the following output after running the above mentioned command:
>> MATLABROOT\toolbox\shared\io\+matlab\+io\+text\+internal\collectOutput.m % static method or package function
2 Commenti
Tim Marks
il 30 Gen 2017
Please change the accepted answer to Jianbin Tang's (you can still add your comment about how Apple Support had you reinstall). I had the exact same problem you did. I followed Jianbin's instructions, and it fixed the problem immediately. It's much preferable to Jeremy Hughes' answer (no offense intended to Jeremy), because Jianbin's fixed the problem in less than a minute, without needing to do a full reinstall of Matlab.
Vedere anche
Categorie
Scopri di più su Install Products 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!