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

📄 ndindex.m

📁 JLAB is a set of Matlab functions I have written or co-written over the past fifteen years for the p
💻 M
字号:
function[y]=ndindex(index,x,dim)%NDINDEX  Indexes a multidimensional array along a specified dimension.%%   Y=NDINDEX(INDEX,X,DIM) indexes the multidimensional array X%   along dimension DIM.  This is equivalent to%		%		    1 2       DIM     DIMS(X)%		    | |        |         |%		Y=X(:,:, ... INDEX, ..., :);		%%   where the location of INDEX is specified by DIM.%%   See also SQUEEZE, DIMS, PERMUTE, SHIFTDIM.%   _________________________________________________________________%   This is part of JLAB --- type 'help jlab' for more information%   (C) 2001, 2004 J.M. Lilly --- type 'help jlab_license' for details          %You would think Matlab would provide a simpler way to do this.str=['y=x('];ndx=length(find(size(x)>1));for i=1:ndx    if i~=dim        str=[str ':,'];    else	str=[str 'index,'];    endendstr=[str(1:end-1) ');'];eval(str);	

⌨️ 快捷键说明

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