How to implement Matlab System Object with different input rates and output rates?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I was trying to create a System Object that I would run as a component in Simulink.
I wanted to have a different input rate and output rate. For example the input would be at 100kHz and output would be at 20kHz. I am not sure how to implement this using stepImpl. Is there a way to do this implementation?
Also as a follow up, is there a way to do variable output rate? For example the output would change between 50kHz and 20kHz based on some internal logic of the system object?
0 Kommentare
Antworten (1)
Chetan
am 8 Nov. 2023
Bearbeitet: Chetan
am 8 Nov. 2023
I understand that you are encountering challenges with implementing a MATLAB system object with differing input and output rates.
One approach to manage this situation is to use Simulink's "Rate Transition" block. Rather than handling different rates within the "stepImpl" method of the System object, you would manage this directly in the Simulink model.
Here's a simplified example:
classdef MySystem < matlab.System
% ...
methods (Access = protected)
function y = stepImpl(obj, u)
% Process the input 'u' and generate the output 'y'
% ...
end
end
% ...
end
In the Simulink model, the structure would look like this:
[Input] --> [MySystem] --> [Rate Transition] --> [Output]
You can set the Rate Transition block's output rate to 20kHz.
For more information on the Rate Transition block, Refer to the following MathWorks Documentation
Hope it helps!
0 Kommentare
Siehe auch
Kategorien
Mehr zu Create System Objects 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!