All my commands end up in workspace

1 Ansicht (letzte 30 Tage)
Stanley Zhu
Stanley Zhu am 22 Aug. 2021
Kommentiert: Stanley Zhu am 22 Aug. 2021
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.

Akzeptierte Antwort

Steven Lord
Steven Lord am 22 Aug. 2021
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

Weitere Antworten (0)

Kategorien

Mehr zu Workspace Variables and MAT-Files finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by