Tugas Kelompok Pengolahan Sinyal Digital.docx

  • Uploaded by: Hana Natashamura
  • 0
  • 0
  • December 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Tugas Kelompok Pengolahan Sinyal Digital.docx as PDF for free.

More details

  • Words: 178
  • Pages: 5
Tugas Pengolahan Sinyal Digital A Grafik/Plot Hasil Sampling Dari 2 Buah sinyal Aliasing

Dosen Pengampu : Rudy Fernandez, MT

Kelompok 5: Fharhan Novriusmen Nelsa Mitia Sari Febi Rizki Yumaara Isyik Alhaqqu Arsy

Jurusan Teknik Elektro Fakultas Teknik Universitas Andalas

Tugas Kelompok Pengolahan Sinyal Digital Soal : 1. Buatlah plot hasil sampling dari 2 buah sinyal yang memiliki frekuensi berbeda dengan frekuensi sampling yang sama,sehingga menghasilkan bentuk yang aliasing. Jawab : Sinyal 1: f1=10 Hz X1= 6*sin(2*pi*f1*t) Sinyal 2: f2=50 Hz X2= 4*sin(2*pi*f2*t) FS= 120 Hz

Grafik/Plot :

Coding Program: clear all clc fs=120; a1=6; a2=4; t=0:1/fs:1; f1=10; x1=a1*sin(2*pi*f1*t); f2=50; x2=a2*sin(2*pi*f2*t);

plot(t,x1,'-o',t,x2,'-o'); legend('10hz','50hz','120hz'); title('Tugas PSD Kelompok 5');

2. Buatlah plot hasil sampling dari 2 buah sinyal yang memiliki frekuensi berbeda dengan frekuensi sampling yang berbeda,sehingga menghasilkan bentuk yang aliasing.

Jawab : Sinyal 1: f1=10 Hz X1= 6*sin(2*pi*f1*t) Fs untuk sinyal1 = 100 Hz Sinyal 2: f2=50 Hz X2= 4*sin(2*pi*f2*t) Fs untuk sinyal2 = 120 Hz

Grafik/plot :

Coding Program : clear all clc fs1=100; fs2=120; a1=6; a2=4; t1=0:1/fs1:1; t2=0:1/fs2:1; f1=10; x1=a1*sin(2*pi*f1*t1); f2=50; x2=a2*sin(2*pi*f2*t2);

plot(t1,x1,'-o',t2,x2,'-o'); legend('10hz','50hz'); title('Tugas PSD Kelompok 5');

Related Documents


More Documents from ""