variables in Simulink Workspace
1 次查看(过去 30 天)
显示 更早的评论
Hi,
I have created a variable 'simout' with the To Workspace block in Simulink. Now I have to use this in a m file, but an error indicates that 'simout' is not defined. How to import this in a m file?
Thanks Senmeis
0 个评论
回答(4 个)
Azzi Abdelmalek
2012-10-19
If it's In workspace, means it's recognized by m file. check your to workspace block, then set save format to array
0 个评论
dimitris
2012-10-19
Simulink resolves variables from base workspace, so if you use simout from a function it wont be able to 'see' it because functions use their own workspace. The following link might help you.
0 个评论
Owen
2012-10-22
2 个评论
Azzi Abdelmalek
2012-10-22
编辑:Azzi Abdelmalek
2012-10-22
Owen, Variables from to workspace block are seen by any m file, (except Functions). Check if your variable is simout and not Simout or any typo error. To be sur rename it 'x' for e.g
Kaustubha Govind
2012-10-23
编辑:Kaustubha Govind
2012-10-23
Oops, I meant to say that you need to use:
options=simset('SrcWorkspace','current','DstWorkspace','current');
sim('mymdl',[0 duration],options)
So that 'To Workspace' writes to the function workspace.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Simulink Functions 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!