my R2013a can not do xjview. May I know the reason?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Wasna Madushanka Ediri Arachchi
il 17 Feb 2017
Commentato: Steven Lord
il 17 Feb 2017
I previously used 2009 one and it was supported for xjview. Then I installed 2013 but now it shows some errors.
3 Commenti
Wasna Madushanka Ediri Arachchi
il 17 Feb 2017
Modificato: Walter Roberson
il 17 Feb 2017
Risposta accettata
Walter Roberson
il 17 Feb 2017
The line giving you problems there is
[p pluginname e v] = fileparts(pluginfiles(k).name);
notice that there are four outputs there. That had to do with the file name structure on the DEC VMS operating system, which has not been supported by MATLAB for many years.
Go through the code, and in any call to fileparts that has four outputs, delete the last output. If you need to, you can set that variable name to '' (the empty string.) For example,
[p pluginname e] = fileparts(pluginfiles(k).name);
v = '';
There might be other changes needed. SPM8 is not entirely compatible with SPM5.
1 Commento
Steven Lord
il 17 Feb 2017
FYI according to the Release Notes we first told users to remove the fourth output argument in release R2010a, started issuing a warning in R2011a, and started throwing an error in R2011b.
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Electromechanical 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!