Main Content

slreq.outLinks

Get outgoing links for a block or other linkable item

Description

example

ks = slreq.outLinks(node), returns outgoing links ks, a Link or Link array, from node, a block or other linkable item.

Examples

collapse all

This example shows how to determine the incoming link for a requirement and outgoing link for a model object.

Load the reqs_validation_property_proving_original_model model and the original_thrust_reverser_requirements requirement set.

load_system("reqs_validation_property_proving_original_model");
rqset = slreq.load("original_thrust_reverser_requirements.slreqx");

Get a handle to requirement with the index 11 in the requirement set.

req = slreq.find(Type="Requirement",Index=11);

Get the incoming links for the requirement.

inLinks = slreq.inLinks(req);

Get the link source for the incoming link.

lkSrc = source(inLinks);

Convert the link source from a structure to a model object.

mo = slreq.structToObj(lkSrc);

Get the outgoing links for the model object.

outLinks = slreq.outLinks(mo);

Input Arguments

collapse all

A linkable item that may have outgoing requirements links. Common examples include a block, function, or TestCase (Simulink Test).

Example: Simulink.Gain

Example: TestCase with properties

Data Types: struct

Output Arguments

collapse all

A Link or Link array outgoing from the linkable item.

Version History

Introduced in R2017b