vtrans.m

来自「JLAB is a set of Matlab functions I have」· M 代码 · 共 43 行

M
43
字号
function[varargout]=vtrans(varargin)%VTRANS Generalized transpose of an N-D vector. %                                                                         %   Y=VTRANS(X,N), where X is an array having exactly one non-singleton   %   dimension, 'transposes' X so that the non-singleton dimension is      %   oriented along dimension N.                                           %                                                                         %   When X is complex-valued, the sign of the imaginary terms in Y will   %   be the same as in X. VTRANS is a therefore a transpose operator,      %   generalized to multiple dimensions.                                   %              %   [Y1,Y2,...YN]=TRANS(X1,X2,...XN,N) also works.%%   VTRANS(X1,X2,...XN,N); with no output arguments overwrites the%   original input variables.%   __________________________________________________________________%   This is part of JLAB --- type 'help jlab' for more information%   (C) 2001, 2004 J.M. Lilly --- type 'help jlab_license' for details      if strcmp(varargin{1}, '--t')  vtrans_test,returnend  n=varargin{end};for i=1:length(varargin)-1  varargout{i}=ndtrans(varargin{i},n);endeval(to_overwrite(nargin-1))function[]=vtrans_testx1=[1 2 3 4];x2(1,1,1:4)=[1:4];   ans1=x1';ans2=x1';vtrans(x1,x2,1);reporttest('VTRANS output overwrite', aresame(x1,ans1) && aresame(x2,ans2))

⌨️ 快捷键说明

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