MATLAB: Can i undo command in command window

undo command

Hi there. I'm new to Matlab and i'm learning it's usage with a book that contains exercises. Sometimes it happens that i create a matrix and make several changes to it through different exercises.
If i do something wrong at some point and change the matrix in a way that i shouldn't have. Is there a way of undo only the last command? Or do i have to change the matrix step by step all over again?

Best Answer

If you’re doing everything in the Command Window, there is no going back.
I would open and save a script file for your exercises and run the script file instead. You can Comment (use % in the first column) the lines you want to save but do not want to run for later reference as you go through your textbook. (I have a script file like that to test and save code I post here on Answers.) You can also use comments to refer to specific exercises on specific pages with respect to your code, so you can refer to it later.