IsInRange
Description
creates a query query
= IsInRange(name
,beginRangeValue
,endRangeValue
)query
that the find
and createView
functions use to select a range of values from
beginRangeValue
to endRangeValue
for a specified
property name name
.
Examples
Find Model Elements that Satisfy Property Range
Import the package that contains all of the System Composer™ queries.
import systemcomposer.query.*
Open the Simulink® project file for the keyless entry system.
openProject("scKeylessEntrySystem");
Load the architecture model.
model = systemcomposer.loadModel("KeylessEntryArchitecture");
Create a query to find components with values from 10 ms
to 40 ms
for the Latency
property.
constraint = IsInRange(PropertyValue("AutoProfile.BaseComponent.Latency"),... Value(10,"ms"),Value(40,"ms")); latency = find(model,constraint,Recurse=true,IncludeReferenceModels=true)
latency = 5x1 cell
{'KeylessEntryArchitecture/Door Lock//Unlock System/Front Pass Door Lock Actuator' }
{'KeylessEntryArchitecture/Door Lock//Unlock System/Rear Driver Door Lock Actuator' }
{'KeylessEntryArchitecture/Sound System/Dashboard Speaker' }
{'KeylessEntryArchitecture/Door Lock//Unlock System/Rear Pass Door Lock Actuator' }
{'KeylessEntryArchitecture/Door Lock//Unlock System/Front Driver Door Lock Actuator'}
Input Arguments
name
— Property name
character vector | string
Property name for model element, specified in the form "<profile>.<stereotype>.<property>"
or any property on the designated class.
Example: "Name"
Example: "AutoProfile.BaseComponent.Latency"
Data Types: char
beginRangeValue
— Beginning range value
value object
Beginning range value for propertyName
, specified as a
systemcomposer.query.Value
object.
Example: Value(20)
Example: Value(5,"ms")
endRangeValue
— Ending range value
value object
Ending range value for propertyName
, specified as a
systemcomposer.query.Value
object.
Example: Value(100)
Example: Value(20,"ms")
Output Arguments
query
— Query
query constraint object
Query, returned as a systemcomposer.query.Constraint
object.
More About
Definitions
Term | Definition | Application | More Information |
---|---|---|---|
view | A view shows a customizable subset of elements in a model. Views can be filtered based on stereotypes or names of components, ports, and interfaces, along with the name, type, or units of an interface element. Create views by adding elements manually. Views create a simplified way to work with complex architectures by focusing on certain parts of the architectural design. |
You can use different types of views to represent the system. Switch between a component diagram, component hierarchy, or architecture hierarchy. For software architectures, you can switch to a class diagram view. A viewpoint represents a stakeholder perspective that specifies the contents of the view. | |
element group | An element group is a grouping of components in a view. | Use element groups to programmatically populate a view. | |
query | A query is a specification that describes certain constraints or criteria to be satisfied by model elements. | Use queries to search elements with constraint criteria and to filter views. | Find Elements in Model Using Queries |
component diagram | A component diagram represents a view with components, ports, and connectors based on how the model is structured. | Component diagrams allow you to programmatically or manually add and remove components from the view. | Inspect Components in Custom Architecture Views |
hierarchy diagram | You can visualize a hierarchy diagram as a view with components, ports, reference types, component stereotypes, and stereotype properties. |
There are two types of hierarchy diagrams:
| Display Component Hierarchy and Architecture Hierarchy Using Views |
Version History
Introduced in R2019b
See Also
Tools
Objects
Functions
Open Example
You have a modified version of this example. Do you want to open this example with your edits?
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)