matlab清除历史数据,以前在MATLAB中打开过的m文件的历史记录
Matlab的R2014b存儲其最近的文件中:
%APPDATA%\MathWorks\MATLAB\R2014b\MATLAB_Editor_State.xml
這是一個.xml文件,所以很容易加載和與xmlread解析。我不是很熟悉XML解析語法,但這里是如何獲取有關文件(必須適應你的課程的需求)的信息:
function [recentFiles] = GetRecentFiles()
%[
% Opens editor's state file
filepart = sprintf('MathWorks\\MATLAB\\R%s\\%s', version('-release'), 'MATLAB_Editor_State.xml');
filename = fullfile(getenv('APPDATA'), filepart);
document = xmlread(filename);
% Get information about 'File' nodes
recentFiles = struct([]);
fileNodes = document.getElementsByTagName('File');
for fni = 1:(fileNodes.getLength())
attributes = fileNodes.item(fni-1).getAttributes(); % Careful, zero based indexing !
for ai = 1:(attributes.getLength())
% Get node attribute
name = char(attributes.item(ai-1).getName()); % Zero based + need marshaling COM 'string' type
value = char(attributes.item(ai-1).getValue()); % Zero based + need marshaling COM 'string' type
% Save in structure
name(1) = upper(name(1)); % Just because I prefer capital letter for field names ...
recentFiles(fni).(name) = value;
end
end
%]
end
這將返回的結構是這樣的:
recentFiles =
1x43 struct array with fields:
AbsPath
LastWrittenTime
Name
注:我試著輸入在MATLAB命令窗口matlab.desktop.editor.*,但似乎有關于最近的文件沒有(反正也有很多有趣的東西來操縱命令行編輯器)
總結
以上是生活随笔為你收集整理的matlab清除历史数据,以前在MATLAB中打开过的m文件的历史记录的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【更新】TOP Server OPC S
- 下一篇: matlab人脸追踪,求大神帮助我这个菜