Simulink variable signal size
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I am trying to implement a logic, were i would have a variable signal size data with me.
Whenver the simulink model is executed then the there would be new set of data received, this data either needs to be updated in the existing values in the variable size signal or needs to be appended to the existing variable signal size.
I am not sure quick how to acheive this, i tried using the below pattern, where newData is getting appended to the prevData, but it does not work, as to get the previous data i am using a delay block, which gives me error as the size of the delay block cannot be propogated. Here i am just appending the data without any condition, but ofcourse in the real world i would make sure that the DataOfInterest is having max bound of some number and not take newData later.
0 Kommentare
Antworten (1)
Benjamin Thompson
am 5 Okt. 2022
You cannot change the size of signals during a simulation run. That is what your MATLAB function is doing, trying to add new data on each function call.
1 Kommentar
Siehe auch
Kategorien
Mehr zu Sources finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!