How to write error information into a file

5 visualizaciones (últimos 30 días)
Jason
Jason el 9 de Mzo. de 2016
Respondida: Walter Roberson el 9 de Mzo. de 2016
For the following code, if we catch a error, how do I do so that the error information('Inconsistent data in iteration %s, skipped.\n', i) can be write into a file(e.g.)? So after code finish running, I can open the file to check the error information.
for i=1:100
try
NonData=[Weight;Height;Age];
% do something with your NonData
catch
fprintf('Inconsistent data in iteration %s, skipped.\n', i);
end
end

Respuesta aceptada

Walter Roberson
Walter Roberson el 9 de Mzo. de 2016
Consider diary()
Over the longer term, fopen a file and fprintf to the file identifier.

Más respuestas (0)

Categorías

Más información sobre String Parsing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by