where to find variables being set in Example model simrfV2_radar_system

2 次查看(过去 30 天)
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 个评论
Debadipto
Debadipto 2024-2-6
编辑:Debadipto 2024-2-6
I couldn't find the mentioned model 'simrfV2_radar_system.slx'. Can you please provide a link to that?
Robbin Roddewig
Robbin Roddewig 2024-2-8
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.

请先登录,再进行评论。

回答(1 个)

Debadipto
Debadipto 2024-2-9
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!

类别

Help CenterFile Exchange 中查找有关 Data Synthesis 的更多信息

产品


版本

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by