1.0

1.0 | 2 ratings Rate this file 108 downloads (last 30 days) File Size: 726 Bytes File ID: #17895

AM, FM Familiarization (missing part)

by Santosh Shah

 

05 Dec 2007 (Updated 05 Dec 2007)

No BSD License  

Basic familiarization about AM and FM

Download Now | 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
 

MATLAB Central Terms of Use

NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Terms prior to use.

Contact us at files@mathworks.com