📄 polyint.m
字号:
function s=polyint(r)%POLYINT Integration of a Polynomial Object. (MM)% POLYINT(R) returns a polynomial object that is the integral of the% the polynomial object R.% R cannot contain a denominator.% To include the constant of integration, simply add it:% POLYINT(R) + Ro% D.C. Hanselman, University of Maine, Orono ME 04469% 7/21/00% Mastering MATLAB 6, Prentice Hall, ISBN 0-13-019468-9if length(r.d)~=1 error('R Must Not Contain a Denominator.')endn=[r.n./(length(r.n):-1:1) 0];s=mmp(n,r.d,r.v);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -