Borrar filtros
Borrar filtros

How to return error code from compiled exe, without throwing up dialogue box?

5 visualizaciones (últimos 30 días)
Hi, Matlab community
I need to receive an error code from a Matlab compiled exe. I read that the way to do this is just by throwing an error. However, this also throws up a dialogue box which I do not want to happen:
function error_code = my_function()
class % This results in error
On the other hand, just returning a value is not interpreted as an error code by the system:
function error_code = my_function()
try
class
error_code = 0;
catch
error_code = 1;
end

Respuesta aceptada

Jan
Jan el 6 de Ag. de 2021
Editada: Jan el 6 de Ag. de 2021
Does this answer still work:
function my_function()
try
class
error_code = 0;
catch
error_code = 1;
end
exit(error_code)
end

Más respuestas (0)

Categorías

Más información sobre Application Deployment en Help Center y File Exchange.

Productos


Versión

R2014b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by