kron               package:fUtilities               R Documentation

_K_r_o_n_e_c_k_e_r _P_r_o_d_u_c_t

_D_e_s_c_r_i_p_t_i_o_n:

     Returns the Kronecker product.

_U_s_a_g_e:

     kron(x, y)

_A_r_g_u_m_e_n_t_s:

    x, y: two numeric matrixes. 

_D_e_t_a_i_l_s:

     The _Kronecker product_ can be computed using the operator  '%x%'
     or alternatively using the function 'kron' for SPlus
     compatibility.

_N_o_t_e:

     'kron' is a synonyme to '%x%'.

_R_e_f_e_r_e_n_c_e_s:

     Golub, van Loan, (1996); _Matrix Computations_,  3rd edition.
     Johns Hopkins University Press.

_E_x_a_m_p_l_e_s:

     ## Create Pascal Matrix:
        P = pascal(3)
        P
        
     ## Return the Kronecker Product                     
        kron(P, diag(3))
        P 
                                

