From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2303/CH1/EX1.4/EX_1_4.png | Bin 0 -> 18432 bytes 2303/CH1/EX1.4/EX_1_4.sce | 12 ++++++++++++ 2 files changed, 12 insertions(+) create mode 100755 2303/CH1/EX1.4/EX_1_4.png create mode 100755 2303/CH1/EX1.4/EX_1_4.sce (limited to '2303/CH1/EX1.4') diff --git a/2303/CH1/EX1.4/EX_1_4.png b/2303/CH1/EX1.4/EX_1_4.png new file mode 100755 index 000000000..31eaee0c1 Binary files /dev/null and b/2303/CH1/EX1.4/EX_1_4.png differ diff --git a/2303/CH1/EX1.4/EX_1_4.sce b/2303/CH1/EX1.4/EX_1_4.sce new file mode 100755 index 000000000..359deb746 --- /dev/null +++ b/2303/CH1/EX1.4/EX_1_4.sce @@ -0,0 +1,12 @@ +//Example 1 4 +clc ; +clear; +close; +f=9; //assuming frequency to be a constant 9Hz. +t =0:.01:10; +x= cos (2* %pi *f*t); +plot (t,x); +xlabel('Time'); +ylabel('Amplitude'); +title('Plot of given sequence to test periodicity'); +disp ( 'Plotting the signal and showing that it is periodic with period=1/f' ); -- cgit