summaryrefslogtreecommitdiffstats
path: root/SD-VBS/common/matlab/randnWrapper.m
diff options
context:
space:
mode:
authorleochanj <jbakita@cs.unc.edu>2020-10-21 01:52:54 -0400
committerleochanj <jbakita@cs.unc.edu>2020-10-21 01:52:54 -0400
commit25d94aa8aabb8ac3e8bbea0bc439ea6148444cc8 (patch)
treeba80e76d25d9ca9486092e2f6b6d76f0e3352bf7 /SD-VBS/common/matlab/randnWrapper.m
parente2b50015cebdfba68699abd6e8575e38230f5a78 (diff)
debug libextra and remove matlab
Diffstat (limited to 'SD-VBS/common/matlab/randnWrapper.m')
-rw-r--r--SD-VBS/common/matlab/randnWrapper.m17
1 files changed, 0 insertions, 17 deletions
diff --git a/SD-VBS/common/matlab/randnWrapper.m b/SD-VBS/common/matlab/randnWrapper.m
deleted file mode 100644
index 1755957..0000000
--- a/SD-VBS/common/matlab/randnWrapper.m
+++ /dev/null
@@ -1,17 +0,0 @@
1function out = randnWrapper(m, n)
2
3out = ones(m,n);
4temp = randWrapper(m,n);
5
6for i=1:m
7 for j=1:n
8 w = temp(i,j);
9 x1 = 1;
10 %w = sqrt((-2.0*log(w))/w);
11 w = ((-2.0*log(w))/w);
12 out(i,j) = x1*w;
13 end
14end
15
16end
17