MATLAB: How to determine the cut off points

cut off point

I ahvae to set the cutoff points for a matrix
forexample say have values from 1 t0 100 in one column....for this the cut of points should be foe ex
0-10.5
10.5-30
30-45.5
45.5-80
80-100
the cut off points should be determined by using discretization algorithm,please help ,how to use that algotithm,I have 100 rows and 5 columns,each column has different values
for example
column1=1 t0 100(random numbers)
column2=zeros and ones
column3=2000-3000(random 100 numbers)
column4=20-60(random 100 nimbers)
column5=200-600(random 100 numbers)

Best Answer

use for loop
for i=1:5
A{}=your algorithm for cutoff points(col1,col2,col3,col4,col5);
end
this will gives the individual cutoff point values for all the columns