Simulink 模块的输出如何作为输入反馈?
我有 2 个嵌入式 Matlab 函数,用于创建 Simulink 模型。这两个函数都使用第二个函数的输出作为其输入。我现在收到一条错误消息,表明这是一个无效循环。
有谁知道如何实施这种行为?
I have 2 embedded Matlab functions which I am using to create a Simulink model. Both functions use the output of the second function as their input. I am getting an error at the moment indicating that this is an invalid loop.
Does anyone know how to implement this type of behaviour?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您已经创建了一个代数环,这意味着计算 Embedded MATLAB 模块的输入直接依赖于该模块的输出。当循环是“自循环”时(即循环中只有一个块),这是不允许的。
解决此问题的一种方法是将 Unit Delay 模块放置在反馈到嵌入式 MATLAB 模块的信号上的某处。请参阅关于代数环的文档更多信息。
You've created an algebraic loop, which means that to compute the inputs of the Embedded MATLAB block are directly dependent on the outputs of the block. This is not allowed when the loop is a "self-loop", i.e. there is only one block in the loop.
One way to fix this is to put Unit Delay block(s) somewhere on the signal feeding back into the Embedded MATLAB block. See the documentation on algebraic loops for more information.