	
	_S_o_l_v_e _a_n _U_p_p_e_r _T_r_i_a_n_g_u_l_a_r _S_y_s_t_e_m
	
	     backsolve(r, x, k=ncol(r))
	
	_A_r_g_u_m_e_n_t_s:
	
	           r : an upper triangular matrix giving the coeffi-
	               cients for the system to be solved.  Values
	               below the diagonal are ignored.
	
	           x : a matrix whose columns give ``right-hand
	               sides'' for the equations.
	
	           k : The number or columns of r and rows of x to
	               use.
	
	_V_a_l_u_e:
	
	     The solution of the triangular system.  The result will
	     be a a vector if x is a vector and a matrix if x is a
	     matrix.
	
	_R_e_f_e_r_e_n_c_e_s:
	
	     Dongarra, J. J., J. R. Bunch, C. B. Moler and G. W.
	     Stewart (1978).  LINPACK Users Guide.  Philadelphia:
	     SIAM Publications.
	
	_S_e_e _A_l_s_o:
	
	     chol, qr, solve.
	
	_E_x_a_m_p_l_e_s:
	
	     # no examples yet
	
