フィルターのクリア

Retrieve a variable previous value in the console

13 ビュー (過去 30 日間)
Leonabil
Leonabil 2013 年 6 月 13 日
コメント済み: Guillaume 2019 年 9 月 1 日
Hello Guys, an easy question. Does anybody know a trick to recover a previous variable value in the console. Lets say that a variable has a stored value (a=3 - it may be a very long vector, matrix, etc and any value) and then it is modified (accidentally) to a new value (a=4). Is there any way to recover the previous value that the variable a had stored? i) immediately after screw it over, something link an undo, ii) after some console commands. Cheers,
  2 件のコメント
Craig
Craig 2019 年 9 月 1 日
hope this gets fixed
Guillaume
Guillaume 2019 年 9 月 1 日
If what get fixed? If you're talking about the behaviour described in the question, it's not going to get fixed as there's nothing to fix. This is the way computers behave. Once you put something in memory, it replaces whatever was there previously. Keeping the previous value around would mean storing the previous value somewhere else, making your computer twice as slow while letting you use only half its memory.

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

回答 (3 件)

Walter Roberson
Walter Roberson 2013 年 6 月 13 日
Sorry, no, other than starting over or (if you know the values) assigning the values back by hand.

Iain
Iain 2013 年 6 月 13 日
It may still be in the command history. If so you just need to look at the command history, and drag, (or select and hit enter or copy + paste) the lines of code into your command window and hit enter.
The up cursor button will go through it line by line - handy for something like b = areallylongfunctionname('areallylongpath, ... ... .. ... ,2);
  1 件のコメント
Walter Roberson
Walter Roberson 2013 年 6 月 13 日
Also if you type the first few letters of a command and up-arrow then it will take you back to the command that starts with what you typed.

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


Leonabil
Leonabil 2013 年 6 月 14 日
Thanks for your answers. The problem is that I do not have available the command and the numerical value on the variable. Indeed, the variable is a matrix array resulting of a very long iteratively optimisation problem lost by typing mistake. Then, getting back in the command history unfortunately does not work, so I was wondering if Matlab has something linke a variable repository memory where I can recover a previous variable value not recurring to the command history or manual entry :-( I am afraid that I need to run the whole process again and this time save the variable - just in case. Thanks for your answers.
  1 件のコメント
Walter Roberson
Walter Roberson 2013 年 6 月 14 日
Sorry, no, once you overwrite a variable it is gone. There is no UNDO for an assignment.

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

カテゴリ

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