removeObserver
Description
removeObserver(
removes the observer named ScenarioSim
,ObserverName
)ObserverName
from the
ScenarioSimulation
object ScenarioSim
.
Examples
Remove Observer from Scenario Simulation
Create
ScenarioSim
, aScenarioSimulation
object.rrApp = roadrunner("C:\RoadRunnerProject"); openScenario(rrApp,"TrajectoryCutIn"); ScenarioSim = createSimulation(rrApp);
Create the class
mySysObserver
, which inherits frommatlab.System
base class. ThemySysObserver
class represents an observer.classdef mysysObserver < matlab.System properties(Access=private) % … end methods % constructor for the System object function obj = mysysObserver() end end methods(Access = protected) %reset the values function resetImpl(obj) obj.mScenarioSimObj = Simulink.ScenarioSimulation.find("ScenarioSimulation", ... "SystemObject", obj); obj.mScenarioSimActorList = []; obj.mIsPacingTurnedOff = false; end % get the required parameter values function stepImpl(obj) mSimulationPace = obj.mScenarioSimObj.get("SimulationPace"); mScenarioSimActorList = obj.mScenarioSimObj.get("ActorSimulation"); end end end
Add the observer to the scenario.
obsStatus = addObserver(ScenarioSim,"ReadPaceandActors","mysysObserver");
Remove the observer from the scenario.
removeObserver(ScenarioSim,"ReadPaceandActors");
Input Arguments
ScenarioSim
— RoadRunner Scenario simulation
ScenarioSimulation
object
RoadRunner Scenario simulation, specified as a ScenarioSimulation
object.
Example: removeObserver(ScenarioSim,
"ObservingRedTruck")
ObserverName
— Name of observer
string | character vector
Name of observer to remove, specified as a string or character vector.
Example: "ObservingRedTruck"
Version History
Introduced in R2022a
See Also
addObserver
| matlab.System
| ScenarioSimulation
| ActorSimulation
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)