histogram plot from a csv file in matlab
I really need help in the histogram plot from a csv file format. When I searched in the internet for histogram it was suggested hist function. In the following example hist is working only for x or y but not both. close all data = csvread(‘mc_10000_better.csv’,4); % Read the data y = data(:,1) ; x…