my R2013a can not do xjview. May I know the reason?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Wasna Madushanka Ediri Arachchi
el 17 de Feb. de 2017
Comentada: Steven Lord
el 17 de Feb. de 2017
I previously used 2009 one and it was supported for xjview. Then I installed 2013 but now it shows some errors.
3 comentarios
Wasna Madushanka Ediri Arachchi
el 17 de Feb. de 2017
Editada: Walter Roberson
el 17 de Feb. de 2017
Respuesta aceptada
Walter Roberson
el 17 de Feb. de 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 comentario
Steven Lord
el 17 de Feb. de 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.
Más respuestas (1)
Ver también
Categorías
Más información sobre Electromechanical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!