dgeMatrix-class package:Matrix R Documentation _C_l_a_s_s "_d_g_e_M_a_t_r_i_x" _o_f _D_e_n_s_e _N_u_m_e_r_i_c (_S_4 _C_l_a_s_s) _M_a_t_r_i_c_e_s _D_e_s_c_r_i_p_t_i_o_n: A general numeric dense matrix in the S4 Matrix representation. 'dgeMatrix' is the _"standard"_ class for dense numeric matrices in the 'Matrix' package. _O_b_j_e_c_t_s _f_r_o_m _t_h_e _C_l_a_s_s: Objects can be created by calls of the form 'new("dgeMatrix", ...)' or, more commonly, by coercion from the 'Matrix' class (see Matrix) or by 'Matrix(..)'. _S_l_o_t_s: '_x': Object of class '"numeric"' - the numeric values contained in the matrix, in column-major order. '_D_i_m': Object of class '"integer"' - the dimensions of the matrix - must be an integer vector with exactly two non-negative values. '_D_i_m_n_a_m_e_s': a list of length two - inherited from class 'Matrix'. '_f_a_c_t_o_r_s': Object of class '"list"' - a list of factorizations of the matrix. _M_e_t_h_o_d_s: The are group methods (see, e.g., 'Arith') _A_r_i_t_h 'signature(e1 = "dgeMatrix", e2 = "dgeMatrix")': ... _A_r_i_t_h 'signature(e1 = "dgeMatrix", e2 = "numeric")': ... _A_r_i_t_h 'signature(e1 = "numeric", e2 = "dgeMatrix")': ... _M_a_t_h 'signature(x = "dgeMatrix")': ... _M_a_t_h_2 'signature(x = "dgeMatrix", digits = "numeric")': ... and other matrix methods available: %*% 'signature(x = "dgeMatrix", y = "dgeMatrix")': Matrix multiplication; ditto for several other signature combinations, see 'showMethods("%*%", class = "dgeMatrix")'. _S_c_h_u_r 'signature(x = "dgeMatrix", vectors = "logical")': ... _S_c_h_u_r 'signature(x = "dgeMatrix", vectors = "missing")': ... _c_h_o_l 'signature(x = "dgeMatrix")': see 'chol'. _c_o_e_r_c_e 'signature(from = "dgeMatrix", to = "lgeMatrix")': ... _c_o_e_r_c_e 'signature(from = "dgeMatrix", to = "matrix")': ... _c_o_e_r_c_e 'signature(from = "matrix", to = "dgeMatrix")': ... _c_o_l_M_e_a_n_s 'signature(x = "dgeMatrix")': columnwise means (averages) _c_o_l_S_u_m_s 'signature(x = "dgeMatrix")': columnwise sums _c_r_o_s_s_p_r_o_d 'signature(x = "dgeMatrix", y = "dgeMatrix")': ditto for several other signatures, use 'showMethods("crossprod", class = "dgeMatrix")', matrix crossproduct, an efficient version of 't(x) %*% y'. _d_i_a_g 'signature(x = "dgeMatrix")': ... _d_i_m 'signature(x = "dgeMatrix")': ... _d_i_m_n_a_m_e_s 'signature(x = "dgeMatrix")': ... _e_i_g_e_n 'signature(x = "dgeMatrix", only.values= "logical")': ... _e_i_g_e_n 'signature(x = "dgeMatrix", only.values= "missing")': ... _n_o_r_m 'signature(x = "dgeMatrix", type = "character")': ... _n_o_r_m 'signature(x = "dgeMatrix", type = "missing")': ... _r_c_o_n_d 'signature(x = "dgeMatrix", norm = "character")': ... _r_c_o_n_d 'signature(x = "dgeMatrix", norm = "missing")': ... _r_o_w_M_e_a_n_s 'signature(x = "dgeMatrix")': rowwise means (averages) _r_o_w_S_u_m_s 'signature(x = "dgeMatrix")': rowwise sums _s_o_l_v_e 'signature(a = "dgeMatrix", b = "dgeMatrix")': ... _s_o_l_v_e 'signature(a = "dgeMatrix", b = "missing")': ... _t 'signature(x = "dgeMatrix")': ... _S_e_e _A_l_s_o: Classes 'Matrix', 'dtrMatrix', and 'dsyMatrix'.