⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 loaddata.m.txt

📁 这是马尔可夫-蒙特卡罗算法的MATLAB源程序.
💻 TXT
字号:
function d = LoadData(filnam)
% d = LoadData(filnam)
% Load data in file filnam and put it in the structure d
% d contains the fields
% Data:      the measured potentials at electrodes
% N:         the number of resistors per side
% ElecNodes: the indices of nodes that are electrodes
% RefNode:   the index of the reference node
% Sigma:     noise standard deviation

% Colin Fox, 11 Jan 2003

%eval(['d = load(''',filnam,''')']);
eval(['load ',filnam]);
d = d; % ain't this silly

%d = struct('Data',Data,'N',N,'ElecNodes',ElecNodes,'RefNode',RefNode,'StdDev',StdDev);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -