日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

matlab清除历史数据,以前在MATLAB中打开过的m文件的历史记录

發布時間:2023/12/20 31 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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文件的历史记录的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。