Domain error. To compute complex results, make at least one input complex.

10 vues (au cours des 30 derniers jours)
Nguyen Xuan Bo
Nguyen Xuan Bo le 15 Juin 2022
Hi.An error occurred while running the simulation and the simulation was terminated
Caused by:
Domain error. To compute complex results, make at least one input complex, e.g. 'power(complex(a),b)'.
How can I fix it?
I have attached the Simulink file.
Thank you so much!

Réponses (1)

Walter Roberson
Walter Roberson le 15 Juin 2022
Déplacé(e) : Joel Van Sickel le 27 Avr 2023
Your code is probably trying to take a negative number to a fraction power, which would give you a complex result. If that is what you want to do, then Simulink requires that you give it permission to use complex numbers by converting the input to complex using a call to complex(). And remember to take into account that this may cause output signals to become complex.
If you are not expecting a complex result there, then you need to debug how the input became negative there.
  2 commentaires
Joel Van Sickel
Joel Van Sickel le 27 Avr 2023
I can confirm Walter's answer that you are taking a negative number to a fraction of a power. For a model this complex, you should build up the individual pieces and get them working seperately before trying to combine everything.
Mohammad Ali Sharifian
Mohammad Ali Sharifian le 17 Déc 2024
This answer worked. I used abs() command to make it positive.
This problem happens in terminal sliding mode control when you have fractional powers.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Simulink dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by