Robochameleon  v1.0
hd_euclid.m
Go to the documentation of this file.
1 
2 function [symb,dist] = hd_euclid(X, c)
3 % Euclidean metric hard decision digital demodulation
4 
5 [dist,symb] = min(abs(bsxfun(@minus,X(:).',c(:))));
6 symb = uint16(symb(:));
7 dist = dist(:);
function hd_euclid(in X, in c)
Euclidean metric hard decision digital demodulation.