	
	_P_r_e_t_t_y _B_r_e_a_k_p_o_i_n_t_s
	
	     pretty(x, n=5)
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     pretty returns a sequence of about n equally spaced
	     nice values which cover the range of the values in x.
	     The values are chosen so that they are 1, 2 or 5 times
	     a power of 10.
	
	_E_x_a_m_p_l_e_s:
	
	     pretty(1:15)
	     pretty(1:15 * 2)
	     pretty(1:20)
	     pretty(1:20, n=2)
	     pretty(1:20, n=10)
	
