qtu.m
来自「3D电阻率反演Matlab程序 RESINVM3D is a MATLAB」· M 代码 · 共 20 行
M
20 行
function[u] = Qtu(Q,d,srcnum)
% u = Qtu(Q,d)
%Calculates the solution to: u = Q'*d;
% Copyright (c) 2007 by the Society of Exploration Geophysicists.
% For more information, go to http://software.seg.org/2007/0001 .
% You must read and accept usage terms at:
% http://software.seg.org/disclaimer.txt before use.
%
% Revision history:
% Original SEG version by Adam Pidlisecky and Eldad Haber
% Last update, July 2005
u = [];
for i = 1:max(srcnum)
j = find(srcnum == i);
uu = Q(j,:)'*d(j);
u = [u,uu];
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?