?? examp8_20.asv
字號:
syms x; fun='sin(x)*exp(-x)/(x+1)^3'; % fun 應該為字符串
maple('with(numtheory):'); f=maple(['cfe:=cfrac(' fun ',x,10)'])
n=collect(maple('nthnumer','cfe',8),x); % 分子多項式合并同類項
d=collect(maple('nthdenom','cfe',8),x); [n,d]=numden(n/d); G=n/d; latex(G)
G1=maple('nthnumer','cfe',10)/maple('nthdenom','cfe',10); % 顯示從略
ezplot(fun,[0,2]), hold on; ezplot(G,[0,2]); ezplot(G1,[0,2])
figure; ezplot(fun,[0,5]), hold on; ezplot(G,[0,5]); ezplot(G1,[0,5])
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -