How to extract coefficients of custom variables in symbolic expression in MATLAB?
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I want to extract the coefficient of i_B from the attached symbolic experession called omega_B and call it p for example, how to do that?

2 commentaires
Réponse acceptée
Paul
le 25 Juil 2023
Modifié(e) : Paul
le 25 Juil 2023
syms psi phi theta i_B j_B k_B psi_dot phi_dot theta_dot
omega_B = (phi_dot - psi_dot*sin(theta))*i_B + (theta_dot*cos(phi) + psi_dot*cos(theta)*sin(phi))*j_B + (psi_dot*cos(phi)*cos(theta) - theta_dot*sin(phi))*k_B
[c,t] = coeffs(omega_B,i_B)
p = c(t == i_B)
Get all the components simultaneously. Using both output arguments of coeffs forces the first output argument to be in the desired order (at least I think that's how it works)
clear c t
[omega,t] = coeffs(omega_B,[i_B j_B k_B])
p = omega(1); q = omega(2); r = omega(3); % if individual components are needed as individual variables
[p;q;r]
[p,q,r]=struct('omega',num2cell(omega)).omega % one line approach
0 commentaires
Plus de réponses (1)
Chunru
le 25 Juil 2023
Modifié(e) : Chunru
le 25 Juil 2023
Let iB=1, jB=0 and kB=0. Then compute omegaB.
3 commentaires
Dyuman Joshi
le 25 Juil 2023
Not a function let, but the english word 'let'.
He suggested the exact thing you found out on your own (what you mentioned in a comment above).
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
