GetProbes
return the probes in the MapleSim model
Calling Sequence
Parameters
Options
Description
Examples
A := MapleSim:-LinkModel();
A:-GetProbes(opts)
opts
-
(optional) equation(s) of the form option = value; specify options for GetProbes
sort = true or false
True means sort the probes lexicographically. The unsorted order matches the declaration order of the probes in the linked model, that is the order used by the Simulate command. The default is false.
sortports = true or false
A synonym for the sort option.
A:-GetProbes returns a list of A's probes.
The A := MapleSim:-LinkModel() statement needs to be run prior to successfully using any of the ModelObject A's export functions.
Linking to a MapleSim model (located in .msim file):
A≔MapleSim:-LinkModel⁡filename=cat⁡kernelopts⁡toolboxdir=MapleSim,/data/examples/RLCcircuit.msim:
Get the list of probes.
A:-GetProbes⁡
Main.Probe1.Vout⁡t
See Also
MapleSim
MapleSim[LinkModel]
MapleSim[LinkModel][GetPorts]
Download Help Document