⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 p203.m

📁 this is chapter 2 this is chapter number 2
💻 M
字号:
clear;  clc;
% P2.3b
n = -20:20;
x = cos (0.3*pi*n);         % Periodic Sequence T = 20/3
subplot(2,1,1); plot(n,x,'ko-');title('cos(0.3\pin)');xlabel('n');
% P2.3c
x = cos (0.3*n);            % Non-Periodic Sequence
subplot(2,1,2); plot(n,x,'ko-');title('cos(0.3n)');xlabel('n');

⌨️ 快捷键说明

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