xlpy.m

来自「the code of the book come form the book 」· M 代码 · 共 8 行

M
8
字号
function [x,n]=xlpy(x1,n1,n0)
n=n1+n0;x=x1;
stem(n,x,'filled')
title('x(n-n0)')
xlabel('n')
axis([min(n)-1,max(n)+1,min(x)-0.5,max(x)+0.5])
set(gcf,'color','w')

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?