symbolic variables into double array, observability matrix
15 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
When I run this program I get the message: The following error occurred converting from sym to double:
Unable to convert expression containing symbolic variables into double array. Apply 'subs' function first to substitute values for variables.
My code:
syms u d3 d5 m Iy;
A = [0 -u 1 0 1;
0 0 0 1 0;
0 0 -d3/m 0 -d3/m;
0 0 0 d5/Iy 0;
0 0 0 0 0];
C = [1 0 0 0 0;
0 1 0 0 0];
Ob = obsv(A, C);
Tried to put C into sym(), that did not help. I guess it should be a simple problem to solve?
0 commentaires
Réponses (2)
Star Strider
le 25 Nov 2021
The variable values need to be provided in order to use the Control System Toolbox funcitons.
To do this symbolically, create the observability and controllability matrices using the defined matrices. There is no other option.
.
0 commentaires
Paul
le 25 Nov 2021
The function obsv() in the Control System Toolbox only accepts numeric input. If you want the symbolic form of the observability matrix you'll have to compute it yourself. The form of Ob is shown on the doc page for obsv. Either hard code it or write a few-line function to compute it from A and C.
0 commentaires
Voir également
Catégories
En savoir plus sur Assumptions 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!