Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的计算机刚刚计算了一个需要几个小时的值。我不小心覆盖了这个值。有没有办法撤消这个?
非常不可能。从技术上讲,这些数据可能仍然存在于内存中,但几乎可以肯定没有提及它的确切存储位置,因此无法检索。
将来,请考虑在创建值后立即将它们保存到文件中。例如,我的大多数 Matlab 脚本都以
save /path/to/experiment/folder/filename.mat important results
右键单击文件本身。有一个选项:“恢复以前的版本”。当我这样做时,matlab 脚本在过去 4 小时内每小时保存一次。我可以像那样恢复它:)