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

📄 vpower.m

📁 JLAB is a set of Matlab functions I have written or co-written over the past fifteen years for the p
💻 M
字号:
function[varargout]=vpower(varargin)%VPOWER  Raises array to the specified power.%%   Y=VPOWER(X,N) is equivalent to Y=X.^N;%%   [Y1,Y2,...YN]=VPOWER(X1,X2,...XN,POWER,N) also works.%%   VPOWER(X1,X2,...XN,POWER,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')  vpower_test,returnendn=varargin{end};for i=1:length(varargin)-1  varargout{i}=varargin{i}.^n;endeval(to_overwrite(nargin-1))    function[]=vpower_testx1=[1 2; 3 4];x2=x1;ans1=[1 4 ; 9 16];vpower(x1,x2,2);reporttest('VPOWER', aresame(x1,ans1) && aresame(x2,ans1))

⌨️ 快捷键说明

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