?? mch04-24.txt
字號:
組合函數圖
x = linspace(0,2*pi,60);
a = sin(x);
b = cos(x);
stem_handles = stem(x,a+b);
hold on
plot_handles = plot(x,a, '^r',x,b, '*g');
hold off
legend_handles = [stem_handles(1);plot_handles];
legend(legend_handles,'a + b','a = sin(x)','b = cos(x)')
xlabel('時 間 ( 微 秒 )')
ylabel('Magnitude')
title('兩 個 函 數 的 線 性 組 合')
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -