?? polynom.asv
字號:
function p = polynom(a)
%POLYNOM多項式類構造函數
% p = POLYNOM(v) 創建creates a polynomial object from the vector v,
% containing the coefficients of descending powers of x.
if nargin == 0
p.c = [];
p = class(p,'polynom');
elseif isa(a,'polynom')
p = a;
else
p.c = a(:).';
p = class(p,'polynom');
end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -