フィルターのクリア

How do you know if a call to "writetable" is successful?

6 ビュー (過去 30 日間)
Douglas Anderson
Douglas Anderson 2022 年 9 月 9 日
コメント済み: Douglas Anderson 2022 年 9 月 10 日
Hello,
I'm sure that this is elementary, but what indicates that a function call that doesn't have an output proceeded properly? Like that "writetable()" actually did write as designed? The old "xlswrite" had a status output. Why doesn't writetable have that?
I guess the same question would be valid for "print".
Thanks!
Doug Anderson

採用された回答

Walter Roberson
Walter Roberson 2022 年 9 月 9 日
An error condition would be generated if writetable() or save() fail.
Exceptions:
  • if the operating system or file system messes up and accidentally writes incorrectly data then you might not get an error message: they might believe that it worked when instead it created a mess
  • if the file is being written to a network file system then it is not completely certain that an error will always be reported.
  3 件のコメント
Walter Roberson
Walter Roberson 2022 年 9 月 10 日
Use try/catch
Douglas Anderson
Douglas Anderson 2022 年 9 月 10 日
Once again, Walter, thank you!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by