No BSD License  

Highlights from
AM, FM Familiarization (missing part)

1.0

1.0 | 2 ratings Rate this file 3 Downloads (last 30 days) File Size: 726 Bytes File ID: #17895
image thumbnail

AM, FM Familiarization (missing part)

by Santosh Shah

 

05 Dec 2007 (Updated 05 Dec 2007)

Basic familiarization about AM and FM

| Watch this File

File Information
Description

Basic familiarization about AM and FM,
i have taken my speech to check whether AM or FM properly recover the signal or not, after modulation and demodulation.

MATLAB release MATLAB 7.3 (R2006b)
Tags for This File  
Everyone's Tags
Tags I've Applied
Add New Tags Please login to tag files.
Comments and Ratings (2)
06 Dec 2007 Dimitri Shvorob

If the code (7 lines) belongs to another submission, why not put it there?

06 Dec 2007 Duane Hanselman

Here is what is in the file. Is this of any value to anyone except the author?

function s_demod = my_amdemod(s, fc, fs)
% here is the function for demodulating the original signal from the
% modulated signal, s is the modulated signal fc and fs are the same.

% butterworth filter parameter
N = 8 ; % filter order
fcut = fc /2;
% absolute value of the modulated signal
s_abs = abs(s);
% filtering with butterworth
[b, a] = butter(N, 2*fcut / fs, 'low');
s_filt = filter(b, a, s_abs);
% remove the means
s_rmvmn = (s_filt - mean(s_filt));
%biasing the signal aroung -1 and 1 V
s_demod = s_rmvmn / max(abs(s_rmvmn));
end

Please login to add a comment or rating.
Tag Activity for this File
Tag Applied By Date/Time
wireless Santosh Shah 22 Oct 2008 09:38:10
santosh shah Santosh Shah 22 Oct 2008 09:38:10
am Santosh Shah 22 Oct 2008 09:38:10
fm Santosh Shah 22 Oct 2008 09:38:10
my_amdemod Santosh Shah 22 Oct 2008 09:38:10
fm remo 17 Nov 2008 19:21:25
fm dipak 13 Mar 2009 23:31:34
am sriya r 15 Jul 2009 03:10:47
fm dsfs 31 Oct 2009 07:19:46
my_amdemod dsfs 31 Oct 2009 07:19:48
fm Carolina Beaklini 08 Jun 2011 09:15:28

Contact us at files@mathworks.com