Load Variable for Use in Simulink MATLAB Function Block
Show older comments
I have been working on this for a while, but cannot get it to work. Basically, I have a MATLAB function block used in a Simulink model. In this block, I have something along the lines of
persistent a
if isempty(a)
load a % a is MAT file with 'a' defined in it
end
%use variable a
But that gave an error. So I tried this
persistent a
if isempty(a)
a = load('a.mat') %a is a structure now
end
%use a.a now
That gave the error: Attempt to extract field 'a' from 'mxArray'.
I'm not sure what to do.
Answers (1)
Kaustubha Govind
on 19 Apr 2012
1 vote
It looks like you are using 'a' like a parameter. Why not declare it as one, so that the value is automatically picked up from the workspace? See Parameter Arguments in MATLAB Function Block Functions. Just remember to not "write" to a. Treat it as read-only.
Categories
Find more on Simulink Functions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!