Text output from script

100 ビュー (過去 30 日間)
Kcire L
Kcire L 2021 年 3 月 10 日
コメント済み: Walter Roberson 2021 年 3 月 10 日
Hello,
I was wondering if there was a way to output a text report of certain values and variables from my matlab script. I am able to output a nice plot of what I am analyzing, but it woudl be nice to output some of the other details of the script in a nice report like file.
What is the best way to do this?
Thanks for any assistance.

採用された回答

David K.
David K. 2021 年 3 月 10 日
I would look at the 'publish' capabilities. At the top of matlab, if you switch from 'Editor' to 'Publish' you can output your code and results. It does not sound like you would want code so by clicking the down arrow in the 'publish' button you can go to edit publish options. Here you can choose your output file format among other options. If you turn the 'Include' code setting to false then it will output your comments and figures.
For other details I would put instances of the disp function into the script. For example:
x = 1; y = 2; z = x*y;
disp(sprintf('The output is %d.',z));
  1 件のコメント
Walter Roberson
Walter Roberson 2021 年 3 月 10 日
See also the Report Generator product.

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by