Print a statement to the Command Window

11,871 ビュー (過去 30 日間)
NAVNEET NAYAN
NAVNEET NAYAN 2017 年 5 月 5 日
コメント済み: Justin Bell 2023 年 7 月 18 日
I am writing a program. I want to display the statement 'job done' as the output in the Command Window. How can I do it?
  2 件のコメント
waleed Al-Qurashi
waleed Al-Qurashi 2021 年 2 月 16 日
3)What is the command that writes a message to the screen?
GOPINATHAN PRAKASH
GOPINATHAN PRAKASH 2021 年 6 月 20 日
Hai navneet nayan,
disp('job done');
disp command is used display the string values.

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

採用された回答

KSSV
KSSV 2017 年 5 月 5 日
編集済み: MathWorks Support Team 2020 年 2 月 27 日
To display text in the Command Window, use disp or fprintf.
disp('job done')
or
fprintf('job done \n')
  3 件のコメント
Jared MacDonald
Jared MacDonald 2023 年 5 月 17 日
Hi John,
There is no way to direct output to the Command Window from a live script that you run in the Live Editor.
You can run the live script from the command line; e.g., if your file is myScript.mlx, then
>> myScript
will indeed output to the Command Window (and separate figure windows). But again there's no way to redirect output from the Live Editor. This is something we are investigating, however.
Jared
Justin Bell
Justin Bell 2023 年 7 月 18 日
I just wanted to bump some support for such a feature with live editor. with some larger scripts that can take up to hours of runtime it would be nice to be able to push a "N% complete" or "Error Detected" flag to the window. Not required but would be nice to be able to have the same color options matlab uses for the command window, i.e. disp in default text options with a vargin for red text etc.

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

その他の回答 (3 件)

Gaurav Srivastava
Gaurav Srivastava 2019 年 5 月 26 日
It's not happening. How to display LHS=RHS?Screenshot (9).png
  3 件のコメント
Steven Lord
Steven Lord 2019 年 6 月 21 日
Even though a and b are displayed the same, that doesn't mean their contents are the same. The == operator checks for exact down-to-the-last-bit equality. In this case, a and b are close but close doesn't count. See this Answers post for an alternative.
sidway
sidway 2021 年 8 月 13 日
Try to make a diference between a and b with a tolerance
tol = 1e-3
if abs(a - b) < tol
disp('LHS=RHS')
end

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


Dhritishman
Dhritishman 2022 年 7 月 10 日
Use the disp function to print to the command window:
disp('job done')
job done
  3 件のコメント
Jack
Jack 2023 年 3 月 23 日
I agreen with @John Taranto. On a .mlx script disp or fprint do not return anything in Command Window, instead it is returned directly underneath the code or to the side depending on your setting. Is there a way to force the text to be displayed in the command window? Thank you in advance
Jared MacDonald
Jared MacDonald 2023 年 5 月 17 日
Hi Jack,
There is no way to direct output to the Command Window from a live script that you run in the Live Editor.
You can run the live script from the command line; e.g., if your file is myScript.mlx, then
>> myScript
will indeed output to the Command Window (and separate figure windows). But again there's no way to redirect output from the Live Editor. This is something we are investigating, however.
Jared

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


Norah
Norah 2023 年 4 月 1 日
What is the command that writes a message to the screen?

カテゴリ

Help Center および File ExchangeEntering Commands についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by