Main Content

Simulink.sdi.deleteRun

Delete a run from the Simulation Data Inspector repository

Description

example

Simulink.sdi.deleteRun(runID)deletes the run corresponding torunID。当你删除一个,indices of all runs following the deleted run change to account for the change in the run count. Deleting a run does not change any run IDs.

Examples

collapse all

You can delete a run from the Simulation Data Inspector repository to free up memory space or to declutter your workspace from data you do not need.

% Load and simulate sldemo_fuelsys modelopenExample('simulink_automotive/ModelingAFaultTolerantFuelControlSystemExample') load_system('sldemo_fuelsys') sim('sldemo_fuelsys')% Get the run ID for the runrunIDs = Simulink.sdi.getAllRunIDs; runID = runIDs(end);% Delete the runSimulink.sdi.deleteRun(runID)

Input Arguments

collapse all

Run ID for the run you want to delete. You can get the run ID for a run usingSimulink.sdi.getAllRunIDsorSimulink.sdi.getRunIDByIndex

Version History

Introduced in R2011b