Hello,
I wanted to deploy a shiny app on shinyapps.io but I am using the system() command to run some matlab code.
My app is functionning well on local but I can't seem to run the code once deployed.
Does anyone know if it's possible ?
My command is :
system(paste("matlab.exe -wait -nodesktop -nosplash -batch "",
"path = '", path, "';
file = ", fileList, ";
run('IndexVolumeIntraSphereFinal.m');" , """, sep = ""))
Thanks in advance !