--- 
:name: clarcm
:md5sum: 1b2fff25bb662279ca1999d0a231aa4a
:category: :subroutine
:arguments: 
- m: 
    :type: integer
    :intent: input
- n: 
    :type: integer
    :intent: input
- a: 
    :type: real
    :intent: input
    :dims: 
    - lda
    - m
- lda: 
    :type: integer
    :intent: input
- b: 
    :type: complex
    :intent: input
    :dims: 
    - ldb
    - n
- ldb: 
    :type: integer
    :intent: input
- c: 
    :type: complex
    :intent: output
    :dims: 
    - ldc
    - n
- ldc: 
    :type: integer
    :intent: input
- rwork: 
    :type: real
    :intent: workspace
    :dims: 
    - 2*m*n
:substitutions: 
  ldc: MAX(1,m)
:fortran_help: "      SUBROUTINE CLARCM( M, N, A, LDA, B, LDB, C, LDC, RWORK )\n\n\
  *  Purpose\n\
  *  =======\n\
  *\n\
  *  CLARCM performs a very simple matrix-matrix multiplication:\n\
  *           C := A * B,\n\
  *  where A is M by M and real; B is M by N and complex;\n\
  *  C is M by N and complex.\n\
  *\n\n\
  *  Arguments\n\
  *  =========\n\
  *\n\
  *  M       (input) INTEGER\n\
  *          The number of rows of the matrix A and of the matrix C.\n\
  *          M >= 0.\n\
  *\n\
  *  N       (input) INTEGER\n\
  *          The number of columns and rows of the matrix B and\n\
  *          the number of columns of the matrix C.\n\
  *          N >= 0.\n\
  *\n\
  *  A       (input) REAL array, dimension (LDA, M)\n\
  *          A contains the M by M matrix A.\n\
  *\n\
  *  LDA     (input) INTEGER\n\
  *          The leading dimension of the array A. LDA >=max(1,M).\n\
  *\n\
  *  B       (input) REAL array, dimension (LDB, N)\n\
  *          B contains the M by N matrix B.\n\
  *\n\
  *  LDB     (input) INTEGER\n\
  *          The leading dimension of the array B. LDB >=max(1,M).\n\
  *\n\
  *  C       (input) COMPLEX array, dimension (LDC, N)\n\
  *          C contains the M by N matrix C.\n\
  *\n\
  *  LDC     (input) INTEGER\n\
  *          The leading dimension of the array C. LDC >=max(1,M).\n\
  *\n\
  *  RWORK   (workspace) REAL array, dimension (2*M*N)\n\
  *\n\n\
  *  =====================================================================\n\
  *\n"
