Simulink Matlab Function block

39 Ansichten (letzte 30 Tage)
Jeremy
Jeremy am 17 Dez. 2013
I have a Matlab workspace variable called clock_frequency.
I use this variable as a parameter in many of my simulink blocks.
I want to be able to access and alter this variable within my Simulink Matlab Function block, but I cannot do it successfully. Unlike the other simulink blocks (that can see the workspace variables) the matlab function block cannot.
I do not want to create a port and pass the variable in as a signal for various reasons.
Reading through the documentation, I have to use data store memory, but this doesn't seem to work. I got a partial version of this working, and the simulink model began running really slowly.

Akzeptierte Antwort

Niklas Nylén
Niklas Nylén am 18 Dez. 2013
This function will read the value x from the base workspace, add 3 to it and write back the new value to the workspace as x. On the next iteration it will read the new value of x and so on.
function y = fcn()
%#codegen
coder.extrinsic('evalin', 'assignin')
x = 0; % Needed in order to set variable class correctly
x = evalin('base','x'); % Read value from workspace
y = x+3;
assignin('base','x',y); % Assign value back to workspace
  3 Kommentare
Sinan Ibrahim Bayraktar
Sinan Ibrahim Bayraktar am 16 Mär. 2019
I get an error while using it for a maxtrix. Is there a way to access this matrix even if I don't want to change it?
N/A
N/A am 13 Okt. 2020
I believe you could define the matrix with zeros before using 'evalin'. For instance, if you want to import a matrix 'x' that is 2X3 in size, define the following in place of fourth line above.
x=zeros(2,3);

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (2)

Rubem Pacelli
Rubem Pacelli am 1 Aug. 2019
Bearbeitet: Rubem Pacelli am 1 Aug. 2019
There are another solution for your question.
  1. Double-click in the MATALAB function block. Will open a script function of your "MATALAB function" block
  2. click on edit data
  3. click on add -> data (or just type cntrl+D shortcut keyword)
  4. type the same name of the variable tha you want pass to MATLAB function block
  5. In Scope, choose "Parameter" option.
It's work fine in my computer. You need save your variable in the MATLAB workspace.
  5 Kommentare
mohammad nojavan
mohammad nojavan am 20 Aug. 2020
hi rubem i dowloaded a simulink file from internet tath contaies some of " Data store Memory block's" . if i want to change the value of this block they dont change and when i run the simulink file the value of data store memory blocks comeback the initial values. please help me
elec.engeen2011@gmail.com
Sunandan Adhikary
Sunandan Adhikary am 7 Feb. 2021
This way we n import the variable but it does not get updated! I am trtying to update arrays in a structure and everytime it enters the function it updates that particular indexec position but later when the function is called in next iteration, those values are gone from the array.

Melden Sie sich an, um zu kommentieren.


Ryan Livingston
Ryan Livingston am 18 Dez. 2013
You may want to add the variable as an input parameter under the ports and data manager:
It will show up in the function block as an input argument like:
function y = fcn(u)
where 'u' will be the parameter name you choose. Then it will search through the workspaces as described in the second link.
  3 Kommentare
Ali Mukhtar
Ali Mukhtar am 12 Sep. 2019
Bearbeitet: Ali Mukhtar am 12 Sep. 2019
hi how can access the values of variables written in simulink function block?
Marlon Trujillo
Marlon Trujillo am 27 Mai 2020
This is limited to some types of variables...

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Simulink Functions finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by