check status of csvread

3 Ansichten (letzte 30 Tage)
HD
HD am 3 Mai 2016
Kommentiert: HD am 4 Mai 2016
Hi, is there any way to check a status of the csvread function ? I am using guide in matlab, I would like to check if there is an error after reading a file to make an error message.
Thank you.

Antworten (1)

Guillaume
Guillaume am 3 Mai 2016
Wrap the call to csvread in a try ... catch block:
try
m = csvread('somefile.txt');
catch exception
fprintf('Failed to read csv file because %s', exception.message);
end
  1 Kommentar
HD
HD am 4 Mai 2016
Hi Guillaume, this is not working. Is it because I am using guide ?
Thank you

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by