Sunday, February 21, 2010

DSP Tutorial #11: Loading, Plotting WCDMA Signal


The raw WCDMA signal can be located on the menu to the right, or by using the link below:

DSP: WCDMA File (wcdma2.csv)

The sample frequency used to sample this signal was fs=32496000

The following code loads the signal and produces a time series plot.


%% Loading WCDMA 3G Signal
close all;
clear all;
fs=32496000; %sample frequency
x=load('wcdma2.csv');
figure('Color',[1 1 1]);
plot(x);
axis('tight');
title('Time Domain Plot of WDMA Modulated Signal');

No comments: