R/randomMatrix.R

Defines functions randomMatrix

randomMatrix <-
function(nCols,nRows,minValue,maxValue) {
  myMat<-matrix(runif(nCols*nRows,min=minValue,max=maxValue), ncol=nCols)
  myMat 
}

Try the elmNN package in your browser

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

elmNN documentation built on May 29, 2017, 3:22 p.m.