simevents entity generation with attributes

How do I using MDES create an entity and set it's attributes based on an input signal?

Answers (1)

You must set the attribute in the Generate event action, using in1.
function [entity,events] = generate(obj,storage,entity,tag,in1)
entity.data.Attribute1 = in1;
events = [];
end

1 Comment

Thanks for you answer!
When I do that I get an error that the attribute datatype is set incorrectly, where and how do I specify the entities attributes?

Sign in to comment.

Categories

Find more on Discrete-Event Simulation in Help Center and File Exchange

Products

Release

R2022a

Tags

Asked:

on 6 Apr 2022

Commented:

on 9 Apr 2022

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!