예제 #1
0
def csc_matmat_pass1(*args):
    """
    csc_matmat_pass1(int const n_row, int const n_col, int const [] Ap, int const [] Ai, int const [] Bp, 
        int const [] Bi, int [] Cp)
    """
    return _csc.csc_matmat_pass1(*args)
예제 #2
0
파일: csc.py 프로젝트: minrk/scipy
def csc_matmat_pass1(*args):
    """
    csc_matmat_pass1(int n_row, int n_col, int Ap, int Ai, int Bp, int Bi, 
        int Cp)
    """
    return _csc.csc_matmat_pass1(*args)
예제 #3
0
def csc_matmat_pass1(*args):
  """
    csc_matmat_pass1(int n_row, int n_col, int Ap, int Ai, int Bp, int Bi, 
        int Cp)
    """
  return _csc.csc_matmat_pass1(*args)
예제 #4
0
파일: csc.py 프로젝트: 317070/scipy
def csc_matmat_pass1(*args):
  """
    csc_matmat_pass1(int const n_row, int const n_col, int const [] Ap, int const [] Ai, int const [] Bp, 
        int const [] Bi, int [] Cp)
    """
  return _csc.csc_matmat_pass1(*args)
예제 #5
0
파일: csc.py 프로젝트: SanPen/CSparse3
def csc_matmat_pass1(n_row, n_col, Ap, Ai, Bp, Bi, Cp):
    """csc_matmat_pass1(int const n_row, int const n_col, int const [] Ap, int const [] Ai, int const [] Bp, int const [] Bi, int [] Cp)"""
    return _csc.csc_matmat_pass1(n_row, n_col, Ap, Ai, Bp, Bi, Cp)