breakHdlSim
Execute stop
command in HDL simulator from MATLAB
Description
breakHdlSim()
executes the stop
command on the
HDL simulator on the local host. Use this function to:
Unblock the HDL simulator after it loads the simulation and before Simulink® starts the simulation.
Unblock the HDL simulator to add more signals to the waveform window when the simulation is in progress.
When you use breakHdlSim
, you must specify the current connection
information to the HDL simulator.
breakHdlSim(
executes the
portNumber
)stop
command in the HDL simulator on the port
portNumber
.
breakHdlSim(
executes the portNumber
,hostName
)stop
command in the HDL simulator on the host
hostName
.
Examples
Execute Stop Command in HDL Simulator from MATLAB
Stop the HDL simulator that is running on the local host.
>> breakHdlSim()
Stop the HDL simulator that is running on port 1234.
>> breakHdlSim('1234')
Stop the HDL simulator that is running on port 1234 and host mylinux.
>> breakHdlSim('1234','mylinux')
Input Arguments
Version History
Introduced in R2008a