summaryrefslogtreecommitdiff
path: root/758/CH1/EX1.2.c/Ex_1_2_c.sce
blob: 1186987159317d392daccb486557c0231744dbb3 (plain)
1
2
3
4
5
6
7
//Example 1.2 (c)
clc;clear;
pi=22/7;
t=-5:0.01:5;
x=cos(2*pi*t-50*pi);
plot(t,x);
title('x(t)=cos(2*pi*t-*pi)');