I have a question

2 ビュー (過去 30 日間)
hufsa tahseen
hufsa tahseen 2021 年 1 月 14 日
コメント済み: hufsa tahseen 2021 年 1 月 18 日
why i see these numbers when i right commands

採用された回答

Steven Lord
Steven Lord 2021 年 1 月 14 日
You did not end the command you executed immediately before calling imshow(d) with a semicolon. I'm guessing that command was a call to imread, load, or some other file importing command.
x = 1; % this will not display
y = 2 % this will display
y = 2
z = x + y % This will display
z = 3
  1 件のコメント
hufsa tahseen
hufsa tahseen 2021 年 1 月 18 日
thanks for your answer

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by