Borrar filtros
Borrar filtros

関数の中で関数を使用するには? How do I use a function in a function?

8 visualizaciones (últimos 30 días)
松
el 8 de Mayo de 2024
Comentada: el 15 de Mayo de 2024
写真は一例ですが,MATLAB functionの出力値を別のMATLAB functionの入力値として使用し,その出力値を元のMATLAB functionの入力値として使用したいのですが,エラーが出てしまいうまく動作しません.どのように改善すればいいのでしょうか.

Respuesta aceptada

Akash
Akash el 13 de Mayo de 2024
Hi 松,
Simulink cannot solve algebraic loop, if it involves blocks that cannot be assigned algebraic variables. These blocks might include those with discrete outputs, non-double or complex outputs, Stateflow blocks, or nonvirtual subsystems.
When an algebraic loop is detected, you have to leave the loop as it is or you have to eliminate it. In some scenarios, adding an 'Initial Condition' block or an 'Algebraic Constraint' block may solve the problem, though it might not be sufficient for all cases. Alternatively, introducing a small delay into the loop, using either a 'discrete delay' block or a 'memory' block, can sometimes effectively remove the loop by breaking the immediate dependency cycle.
For more information and potential solutions to algebraic loops in Simulink, you can go through the MATLAB Central discussion linked below.
  1 comentario
松
el 15 de Mayo de 2024
Thank you so much. I will use it as a reference.

Iniciar sesión para comentar.

Más respuestas (0)

Productos


Versión

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!