Making a S-Function from a Matlab script
Show older comments
Hi,
I would like to make a S-Function from a block I got in an opened model.
I would like to automate this from a Matlab script. Is there a function to generate S-Function directly from Matlab editor ?
Thanks,
Eric
2 Comments
Kaustubha Govind
on 13 Jul 2012
Your question is a little confusing. Did you want to generate an S-function from a Simulink block/subsystem using commands, or did you want to generate an S-function from MATLAB code so you can call it in Simulink?
Eric
on 13 Jul 2012
Answers (1)
mdlName = 'YourModelName';
% Set the s-function target
set_param(mdlName,'SystemTargetFile','rtwsfcn.tlc');
% Build your subsystem
rtwbuild([mdlName '/' 'SubsystemName']);
Categories
Find more on Simulink Coder in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!