R/matchIndexes.R

Defines functions `matchIndexes`

`matchIndexes` <-
function(m, string) {
	ans = 1:length(m)
	for (i in 1:length(m)) {
		ans[i] =match(m[i],string)
	}
	return (ans)
}

Try the mlegp package in your browser

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

mlegp documentation built on March 18, 2022, 5:29 p.m.