]> Creatis software - CreaPhase.git/blob - octave_packages/communications-1.1.1/pskdemod.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / communications-1.1.1 / pskdemod.m
1 ## Copyright (C) 2006 Charalampos C. Tsimenidis
2 ##
3 ## This program is free software; you can redistribute it and/or modify it under
4 ## the terms of the GNU General Public License as published by the Free Software
5 ## Foundation; either version 3 of the License, or (at your option) any later
6 ## version.
7 ##
8 ## This program is distributed in the hope that it will be useful, but WITHOUT
9 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
11 ## details.
12 ##
13 ## You should have received a copy of the GNU General Public License along with
14 ## this program; if not, see <http://www.gnu.org/licenses/>.
15
16 ## -*- texinfo -*-
17 ## @deftypefn {Function File} {@var{y} = } pamdemod (@var{x}, @var{m})
18 ## @deftypefnx {Function File} {@var{y} = } pamdemod (@var{x}, @var{m}, @var{phi})
19 ## @deftypefnx {Function File} {@var{y} = } pamdemod (@var{x}, @var{m}, @var{phi}, @var{type})
20 ##
21 ## Demodulates a complex-baseband phase shift keying modulated signal 
22 ## into an information sequence of integers in the range 
23 ## @code{[0 @dots{} M-1]}. @var{phi} controls the initial phase and 
24 ## @var{type} controls the constellation mapping. If @var{type} is set
25 ## to 'Bin' will result in binary encoding, in contrast, if set to 
26 ##'Gray' will give Gray encoding.  An example of Gray-encoded 8-PSK is
27 ##
28 ## @example
29 ## @group
30 ## d = randint(1,1e3,8);
31 ## y = pskmod(d,8,0,'Gray');
32 ## z = awgn(y,20);
33 ## d_est = pskdemod(z,8,0,'Gray');
34 ## plot(z,'rx')
35 ## biterr(d,d_est)
36 ## @end group
37 ## @end example
38 ## @end deftypefn
39 ## @seealso{pskmod}
40
41 function y=pskdemod(x,M,phi,type)
42
43 if nargin<2
44         usage("y = pskdemod (x, M, [phi, [type]])");   
45 endif    
46
47 if nargin<3
48         phi=0;
49 endif
50
51 if nargin<4
52         type="Bin";
53 endif
54
55 m=0:M-1;
56 index=mod(round((arg(x)-phi)*M/2/pi),M)+1;
57
58 if (strcmp(type,"Bin")||strcmp(type,"bin"))
59         y=index-1;
60 elseif (strcmp(type,"Gray")||strcmp(type,"gray"))
61         map=bitxor(m,bitshift(m,-1));
62         y=map(index);
63 else
64     usage("y = pskdemod (x, M, [phi, [type]])");   
65 endif
66
67 %!assert (pskdemod([1 j -1 -j],4,0,'Bin'),[0:3])
68 %!assert (pskdemod([1 j -j -1],4,0,'Gray'),[0:3])