This repository has been archived on 2021-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
scientificComputing/statistics/matlab/intervalplots.m
2014-10-11 18:25:57 +02:00

6 lines
81 B
Matlab

close all
% histogram
figure()
x = randn(2000,1);
hist(x, 50, 'gray')
box('off');