📄 pow.m
字号:
function y = pow(x)
% @MPOL/POW - Internal use only
% POW(X) returns a matrix of powers of monomials in scalar polynomial X.
%
% Note that powers corresponding to the zero variable
% are indices of the mass of the measures
% D. Henrion, November 30, 2003
if max(size(x)) > 1
error('Scalar polynomials only')
end
y = x.pow;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -