setReproSexProb: Set the vector of probabilities of sexual reproduction

View source: R/Methods-LandsepiParams.R

setReproSexProbR Documentation

Set the vector of probabilities of sexual reproduction

Description

set the probabilities for an infectious host to reproduce via sex rather than via cloning at every time step.

Usage

setReproSexProb(params, vec)

Arguments

params

a LandsepiParams object

vec

a vector of size TimeParam$nTSpY +1 (season end) with the probabilities for an infectious host to reproduce via sex rather than via cloning at each time step.

Value

a LandsepiParams object updated

Examples

## Not run: 
simul_params <- createSimulParams()
simul_params <- setTime(simul_params, Nyears=10, nTSpY=120)
repro_sex_probs <- c(rep(0.0, 120), 1.0)  
simul_params <- setReproSexProb(simul_params, repro_sex_probs)
simul_params@ReproSexProb

## End(Not run)

landsepi documentation built on July 26, 2023, 5:36 p.m.