mpower.m

来自「HERE IS A GOOD PSO TOOL BOX」· M 代码 · 共 20 行

M
20
字号
function r = mpower(x,y)% GPVAR/MPOWER  Implement '^' for GP variable.%if( ~isnumeric(y) )  error('The exponent in the power must be a numerical value.');endif( length(x) > 1 )  error(['Cannot raise vectors or matrices of GP variables to a power.' char(10) ...         'Try pointwise power which is defined for vectors and matrices.'])endif( length(y) > 1 )  error(['Cannot use exponents that are vectors or matrices with a regular power.'...         char(10) 'Try pointwise power which is defined for vectors and matrices.'])endr = monomial(x)^y;

⌨️ 快捷键说明

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