Adding in the missing Transceiver52M directory


git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@2307 19bc5d8c-e614-43d4-8b26-e1612bc8e597
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;
+
+