mkvc.m
来自「3D电阻率反演Matlab程序 RESINVM3D is a MATLAB」· M 代码 · 共 15 行
M
15 行
function[v] = mkvc(A)
% v = mkvc(A)
%reshapes a 3D matrix A, into a vector.
%note this function can be replace with the call A = A(:)
% 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 Eldad Haber
% Last update, July 2001
v = reshape(A,size(A,1)*size(A,2)*size(A,3),1);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?