javaaddpath('jxl.jar');
javaaddpath('MXL.jar');
import mymxl.*;
import jxl.*;
filename = 'Test.xls';
data = {A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R}
xlwrite('./Test.xls',data);
When I use this code in MATLAB R2014b the test.xls is created in the folder where the .m is. There is more code in the .m file, but I have not included as this is just defining variables.
When I compile this using the Application Compiler, the .xls file is not created. I have included all files that I got in the xlwrite download, when I compiled. I also included the ./ to indicate that the .xls should be written in the folder the app is. But still no file is written.
Can anyone advise me where I am going wrong when I open the app after compiling please?