R/std.matrix.r

Defines functions std.matrix

Documented in std.matrix

std.matrix <- function(filename,t=FALSE)
{
	dat <- read.table(filename)
	if(t){dat<-t(dat)}
	dat <- dat/max(dat)
	return(dat)
}

Try the ESM package in your browser

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

ESM documentation built on May 2, 2019, 4:51 p.m.