Learn R Programming

MotilityLab (version 0.2-5)

simulateTracks: Generate Tracks by Simulation

Description

Generic function that executes expr, which is expected to return a track, n times and stores the output in a tracks object. Basically, this works like replicate but for tracks.

Usage

simulateTracks(n, expr)

Arguments

n
number of tracks to be generated.
expr
the expression, usually a call, that generates a single track.

Value

A tracks object containing n tracks.

Examples

Run this code
## Generate 10 tracks, 100 steps each, from a random walk with standard normally
## distributed increments and plot them
plot( simulateTracks( 10, brownianTrack(100,3) ) )

Run the code above in your browser using DataLab