mpower.m
来自「HERE IS A GOOD PSO TOOL BOX」· M 代码 · 共 28 行
M
28 行
function r = mpower(x,y)% MONOMIAL/MPOWER Implement '^' for a monomial.%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 monomials 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.'])endif( y == 0 ) % return scalar 1 if the exponent is zero r = 1;else r = monomial; r.c = (x.c)^y; r.a = (x.a)*y; r.gpvars = x.gpvars;end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?