Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Signal Process... With Matlab [project help]

Status
Not open for further replies.

umutguncan

Junior Member level 1
Joined
Nov 23, 2005
Messages
19
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,458
Hello!!
I've a project and I've problems with this..
there is a sound signal
**broken link removed**

named: odev1.mat

in matlab ı have to do....



signal
-------------> FMDEMOD-----------highpassfilter-------AM, single sideband.--->msg2
|
|
--------lowpass filter-------------->msg1



and there are 2 messages to listen...
I wrote this codes

>> x = demod(sinyal,10000,Fs,'fm');
>> soundsc(x,2000000)


without the lowpassfilter ı can hear the msg1

but how can ı hear msg 2?? [/img]
 

wat's the format of the odev1 file that u have there.
it's 3.8Mb but not even 0.3 seconds in length.
 

odev.1mat has 3 files in matlab...
1.fs . simple frequenct
2.delta_f . Δf
3.sinyal .sound
 

>> fmdemod=demod(sinyal,10000,Fs,'fm');

>> x=filter(hpfilt,1,fmdemod);

>> msg2=demod(x,20000,Fs,"amssb");

>> soundsc(msg2,200000)

>> msg1=filter(lpfilt,1,fmdemod);

>> soundsc(msg1,200000)




I use toolbox for designing filters....
lowpassfilter(lpfilt)
highpassfilter(hpfilt)


ITS DONE:idea:
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top