Simulink Pass Variable to Mask Parameter

조회 수: 2 (최근 30일)
Nash Gould
Nash Gould 2019년 3월 4일
답변: Jared Belke 2019년 6월 27일
Hi, I am using the PV Array block in a program that I'm writing, and I would like to be able to pass a variable into the parameters of the mask. Is there a way to do this?
Thanks!

채택된 답변

Jared Belke
Jared Belke 2019년 6월 27일
Say you have some Mask Parameter named "Param", and you would like to pass the value contained by some variable named "Var" into Param. You can do:
set_param(gcb, 'Param', Var);
Note that gcb gets the name of the current block. If you are calling set_param in the callback function for Param, the current block will be the correct block. If you are calling set_param from somewhere other than the callback for Param, you may have to put the explicit blockname instead of gcb. To get this block name, just click on the block, and then run gcb in the matlab command line.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Author Block Masks에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by