verify (model, variant)
Validate and verify SimBiology model
Syntax
Description
verify(
performs checks on a modelObj
)Model
modelObj
to verify that you can simulate the model. This
function generates stacked errors and warnings if it finds any problems. To see
the entire list of errors and warnings, use sbiolasterror
and sbiolastwarning
. The function
uses the active configuration set, any active doses and active variants for
verification.
verify(
verifies a model modelObj
,dvObj
)modelObj
using doses or variants specified
by dvObj
and the active configset.
dvObj
can be one of the following:
Array of doses or variants
If you set dvObj
to empty []
, the
function uses the active configset, active variants, and active doses.
If you specify dvObj
as variants, the function uses the
specified variants and active doses. Any other variants are ignored.
If you specify dvObj
as doses, the function uses the
specified doses and active variants. Any other doses are ignored.
verify(
verifies a model modelObj
,csObj
,dvObj
)modelObj
using a configset object
csObj
and doses or variants specified by
dvObj
.
If you set csObj
to []
, then the
function uses the active configset object.
If you set dvObj
to []
, then the
function uses no variants, but uses active doses.
If you specify dvObj
as variants, the function uses the
specified variants and active doses. Any other variants are ignored.
If you specify dvObj
as doses, the function uses the
specified doses and active variants. Any other doses are ignored.
verify(
verifies a model modelObj
,csObj
,variantObj
,doseObj
)modelObj
using a configset object
csObj
, variants (variantObj
) and doses
(doseObj
). Any other configset, doses, and variants are
ignored.
If you set csObj
to []
, then the
function uses the active configset object.
If you set variantObj
to []
, then the
function uses no variants.
If you set doseObj
to []
, then the
function uses no doses.
Input Arguments
Examples
See Also
Version History
Introduced in R2006a