runifm {matricks}R Documentation

Create matrix of random values drawn from uniform distribution

Description

Create matrix of random values drawn from uniform distribution

Usage

runifm(nrow, ncol, min = 0, max = 1)

Arguments

nrow

number of rows

ncol

numer of columns

min

lower limit of the distribution. Must be finite.

max

upper limit of the distribution. Must be finite.

Value

a matrix

Examples

runifm(3, 3)
runifm(4, 5, min = -1, max = 3)

[Package matricks version 0.8.2 Index]