loaddata.m.txt
来自「这是马尔可夫-蒙特卡罗算法的MATLAB源程序.」· 文本 代码 · 共 17 行
TXT
17 行
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 + =
减小字号Ctrl + -
显示快捷键?