Effacer les filtres
Effacer les filtres

where to find variables being set in Example model simrfV2_radar_system

1 vue (au cours des 30 derniers jours)
Robbin Roddewig
Robbin Roddewig le 29 Jan 2024
There are variables being set in the Simulink radar model example file simrfV2_radar_system.slx. For example if you look in the Target subsystem block in the model (down arrow or right click and Mask>Look Under Mask) there is a variable Speed. There are actually quite a few variables scattered in here like Doppler etc. Where are these being set? They dont appear in the Target mask inputs. In fact there is a variable in the mask inputs and I cannot find that either, radar_system_targetSpeed. I looked in the init functions and poked around the model. No luck.
Appreciate any help!
  2 commentaires
Debadipto
Debadipto le 6 Fév 2024
Modifié(e) : Debadipto le 6 Fév 2024
I couldn't find the mentioned model 'simrfV2_radar_system.slx'. Can you please provide a link to that?
Robbin Roddewig
Robbin Roddewig le 8 Fév 2024
It came with the Matlab example files with 2023b. I just stumbled across it but was under the impression that it was generated by Mathworks.

Connectez-vous pour commenter.

Réponses (1)

Debadipto
Debadipto le 9 Fév 2024
Hello @Robbin,
So there are two things that we need to understand here: "Object parameters" & "Workspace variables". In simple words, "object parameters" in MATLAB refer to the internal attributes of a block. For eg. 'Speed' here is an object parameter of the 'Target' block. How do we verify? Simply in the MATLAB command window, type:
get_param('simrfV2_radar_system/Target', 'ObjectParameters')
You will see a list of struct objects appear. Notice that 'Speed' is also a part of it, which indicates it is indeed a parameter of the 'Target' block. Consequently, to see the value of 'Speed', run:
get_param('simrfV2_radar_system/Target', 'Speed')
You will see the result being 'radar_system_targetSpeed' (you might need to compile the model first!).
The varibale 'radar_system_targetSpeed' is a "workspace variable" in this context. More specifically, a base workspace variable, which can be verified by simply checking the base workspace. Generally, you can get this information by looking at the Model Explorer menu of the Simulink model.
Hope this answers your query!

Catégories

En savoir plus sur Data Synthesis dans Help Center et File Exchange

Produits


Version

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by