How does "disp" formatting work exactly?

16 ビュー (過去 30 日間)
dsmalenb
dsmalenb 2019 年 5 月 16 日
コメント済み: Walter Roberson 2019 年 5 月 17 日
Greetings,
I am converting some PDFs using Matlab and the way I want the final text to look is exactly how "disp" displays it. However, I am scratching my head of how to capture that in a way that I can write it to a word document or capure that exact process that "disp" does using fprintf. Any ideas?

採用された回答

Walter Roberson
Walter Roberson 2019 年 5 月 16 日
None of the disp() formats correspond to single fprintf() formats. They all examine the range and data type of what they are displaying and choose output format dynamically. The output it uses for a vector of values might be different than what it uses for the values individually.
You can evalc() to capture the results of disp(), or you might be able to use diary() for your purposes.
  2 件のコメント
dsmalenb
dsmalenb 2019 年 5 月 17 日
I used diary and it works ... somewhat. evalc seems to require a string to process and since I need to update the location dynamically it doesn't seem to like to accept that with the strcat function.
Basically, how do you write to a text doc how Matlab would display it in the command window automatically?
Walter Roberson
Walter Roberson 2019 年 5 月 17 日

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

タグ

製品


リリース

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by