Simulink 模块的输出如何作为输入反馈?

发布于 2024-10-06 01:44:37 字数 183 浏览 2 评论 0原文

我有 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?

Screenshot showing the model and the error

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南城旧梦 2024-10-13 01:44:37

您已经创建了一个代数环,这意味着计算 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文