plot(t,y),grid on;%绘制图像并设置网格线
axis([-10,10,0,1]);%设置坐标轴范围
xlabel('-10.0 \leq t \leq 10.0');%设置横轴标签...^n;%函数表达式
stem(n,y),grid on;%绘制图像并设置网格线
axis([-10,10,0,4]);%设置坐标轴范围
xlabel('n');%设置横轴标签
ylabel('y');%...(y);%取该函数的实部
stem(n,z),grid on;%绘制图像并设置网格线
axis([-10,10,-2,2]);%设置坐标轴范围
xlabel('n');%设置横轴标签
ylabel('z...x= (1+cos(pi*t)) %函数表达式
plot(t,x), grid on; %绘制图像并设置网格线
axis=[-1,1,0,2]; %设置坐标轴范围
xlabel('-1<t<1');...x = exp(n); %函数表达式
stem(n,x),grid on ; %绘制图像并设置网格线
axis=[0,5,1,100]; %设置坐标轴范围
xlabel('0\leqn<5'); %设置横轴标签