From b3a0ca42db0bd08c58b9370a1398528016e6953f Mon Sep 17 00:00:00 2001 From: dburgess Date: Wed, 12 Oct 2011 07:44:40 +0000 Subject: Adding in the missing Transceiver52M directory git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@2307 19bc5d8c-e614-43d4-8b26-e1612bc8e597 --- Transceiver52M/pulseApproximate.m | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Transceiver52M/pulseApproximate.m (limited to 'Transceiver52M/pulseApproximate.m') diff --git a/Transceiver52M/pulseApproximate.m b/Transceiver52M/pulseApproximate.m new file mode 100644 index 0000000..2ff9234 --- /dev/null +++ b/Transceiver52M/pulseApproximate.m @@ -0,0 +1,15 @@ +pp = [0 0 0.015 0.18 0.7 0.96 0.7 0.18 0.015 0 0]; +t = -2.5:0.5:2.5; + +v = -0.000:-0.001:-1.999; + + +for ix1 = 1:length(v), + disp(ix1); + for ix2 = 1:length(v), + p = exp(v(ix1)*t.^2+v(ix2)*t.^4); + r(ix1,ix2) = norm(p./max(abs(p)) - pp./max(abs(pp))); + end; +end; + + -- cgit v1.2.3