フィルターのクリア

All my commands end up in workspace

2 ビュー (過去 30 日間)
Stanley Zhu
Stanley Zhu 2021 年 8 月 22 日
コメント済み: Stanley Zhu 2021 年 8 月 22 日
After I added data to my workspace, whenever I do anything, it just ends up being added to the workspace area instead of getting executed, how do I fix this.

採用された回答

Steven Lord
Steven Lord 2021 年 8 月 22 日
Your last three lines create variables that shadow the title, xlabel, and ylabel functions rather than calling those funcions. Instead those lines should look like the plot command on the line right before it, without the equals signs.
title('abc') % Calls the function
title = ('abc') % Creates a variable and prevents you from calling the function
  1 件のコメント
Stanley Zhu
Stanley Zhu 2021 年 8 月 22 日
I can't believe I didn't see that, thanks

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeWorkspace Variables and MAT-Files についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by