R/frm_normalize_matrix_row.R

Defines functions frm_normalize_matrix_row

## File Name: frm_normalize_matrix_row.R
## File Version: 0.02

frm_normalize_matrix_row <- function(matr)
{
    res <- matr / rowSums(matr)
    return(res)
}

Try the mdmb package in your browser

Any scripts or data that you put into this service are public.

mdmb documentation built on March 7, 2023, 6:58 p.m.