Replies: 3 comments 6 replies
-
Hi there 👋 Computations involving transfer functions are numerically poor, so I usually recommend people to convert their transfer functions to state-space representation as soon as possible for better performance. Is there a reason not to do this in your case? |
Beta Was this translation helpful? Give feedback.
-
This PR does the conversion to ss automatically, performs the computation and then converts back to tf. You'll also get a warning indicating that it's preferable to convert to ss manually before the computation in order to avoid the conversion back to tf of the result. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the fast reply! I use the matrices per frequency in my algorithm, so for that I do really need the tf and not the ss representation of the system. Another reason to raise the issue is that I try to promote Julia to my colleagues, who are mostly MATLAB users. Therefore, these basic operations such as I think your proposed solution is very good, since it concludes the explanation that ss is a better choice for numerical performance. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hey all! I am not sure if this is the right place to request a feature. I am working on a Julia project that uses MIMO transfer functions as input. It is often handy to be able to construct these MIMO transfer functions by doing things like
P = feedback(G_1, G_2)
or even more simplyG = P / Q
.When I try it with the current state of affairs, I get the error message
MIMO TransferFunction feedback isn't implemented.
orMIMO TransferFunction inversion isn't implemented yet
. Is there any ambition to implement this soon?Beta Was this translation helpful? Give feedback.
All reactions