How to implement Matlab System Object with different input rates and output rates?

2 vues (au cours des 30 derniers jours)
AC_man
AC_man le 29 Déc 2021
Modifié(e) : Chetan le 8 Nov 2023
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?

Réponses (1)

Chetan
Chetan le 8 Nov 2023
Modifié(e) : Chetan le 8 Nov 2023
Hello @AC_man,
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!

Catégories

En savoir plus sur Create System Objects dans Help Center et File Exchange

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by