where to find variables being set in Example model simrfV2_radar_system

조회 수: 2 (최근 30일)
Robbin Roddewig
Robbin Roddewig 2024년 1월 29일
답변: Debadipto 2024년 2월 9일
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