File:Quanterr.png

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Quanterr.png(489 × 320 pixels, file size: 2 KB, MIME type: image/png)

Captions

Captions

Plot of a quantized signal and its error

Summary

[edit]
Description Plot of a quantized signal and its error
Date
Source Own work
Author Atropos235

Source Code

[edit]
close all; figure
t = 0:0.0001:2;
   % generate some nice looking signal then scale to +/- 1
x = 2*cos(2*pi*t)+1.5*cos(4*pi*t+2)+1*cos(5*pi*t)+0.5*cos(10*pi*t);
x = 2*(x - min(x))/(max(x)-min(x)) - 1;
   % quantization
n = 2; % bits 
xq = floor((1-1e-12)*(x+1).*2.^(n-1));
xq = xq / (2^(n-1));
xq = xq - (2^n - 1) / 2^n;
   % error signal
qerr = x - xq;
   % plot
subplot(211); plot(t,x,'b',t,xq,'r'); title('Original and Quantized Signal');
subplot(212); plot(t,qerr,'b'); title('Quantization Error');

Licensing

[edit]
Public domain I, the copyright holder of this work, release this work into the public domain. This applies worldwide.
In some countries this may not be legally possible; if so:
I grant anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law.

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current21:13, 6 May 2010Thumbnail for version as of 21:13, 6 May 2010489 × 320 (2 KB)Aiyizo (talk | contribs)losslessly compressed with pngout
03:41, 24 February 2008Thumbnail for version as of 03:41, 24 February 2008489 × 320 (5 KB)Atropos235 (talk | contribs){{Information |Description=Plot of a quantized signal and it's error |Source=self-made |Date=23 February 2008 |Author= Atropos235 |Permission= |other_versions= }} ==Source Code== <pre><nowiki> close all; figure t = 0:0.0001:2; % gen

The following page uses this file:

File usage on other wikis

The following other wikis use this file: