From 63569d897380bc5d46c3df6142c601bca9ce47e7 Mon Sep 17 00:00:00 2001 From: Fabian Sinz Date: Sat, 11 Oct 2014 18:25:57 +0200 Subject: [PATCH] matlab script added --- statistics/matlab/intervalplots.m | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 statistics/matlab/intervalplots.m diff --git a/statistics/matlab/intervalplots.m b/statistics/matlab/intervalplots.m new file mode 100644 index 0000000..b069918 --- /dev/null +++ b/statistics/matlab/intervalplots.m @@ -0,0 +1,6 @@ +close all +% histogram +figure() +x = randn(2000,1); +hist(x, 50, 'gray') +box('off'); \ No newline at end of file