Hi i have a graph (please see attatched). But i want them to be smooth curves. My teacher has told me to reduce bin sizes. How do i do this? Thanks Adam
Follow Math Help Forum on Facebook and Google+
Originally Posted by adam_leeds Hi i have a graph (please see attatched). But i want them to be smooth curves. My teacher has told me to reduce bin sizes. How do i do this? Thanks Adam Sort the data in a data set (call the data: x) put y=(1:length(x))/length(x) then plot(x,y) CB
Originally Posted by CaptainBlack Sort the data in a data set (call the data: x) put y=(1:length(x))/length(x) then plot(x,y) CB Bit confused. I already have x as a set of values. And y as a set of values.
In fact that's what i've already done. PR = sort(x); x=[1:1:366]; a=x/366; plot(PR,a) and it comes out like that
Originally Posted by adam_leeds In fact that's what i've already done. PR = sort(x); x=[1:1:366]; a=x/366; plot(PR,a) and it comes out like that So why are you talking about bin sizes, there is no binning involved? CB
View Tag Cloud