📄 mpower.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -