日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 人工智能 > 循环神经网络 >内容正文

循环神经网络

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

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

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