An error when "syms" is used
Infos
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Afficher commentaires plus anciens
Hello
I would be appreciated if you could guide me why the following error has occured in phi(1), phi(2), and phi(3) as symbolic variables?!
Unable to convert expression containing symbolic variables into double array. Apply 'subs' function first to substitute values for variables.
A piece of my code is :
a1 = 5.79e-08; a2 = 1.23e-07; a3 = 6.67e-08; a21=a2/a1; a32=a3/a2;
o1= w1*(Tb-Tts)+q_met1/k1;
o2= w2*(Tb-Tts)+q_met2/k2;
o3= w3*(Tb-Tts)+q_met3/k3;
syms s
syms t
syms x y z
Tb=310; Tts=310; Tini=309; % Assumption: Tb=Tts;
phi= zeros(3,1);
TT= Tini-Tts;
phi(1)= TT+(a1*o1)/s;
phi(2)= TT+(a2*o2)/s;
phi(3)= TT+(a3*o3)/s;
6 commentaires
Torsten
le 31 Mai 2021
You did not assign a numerical value to s. So the expression TT+a1*o1/s is symbolic. But you try to assign this expression to a numerical array, namely phi.
Mahsa Babaee
le 31 Mai 2021
Mahsa Babaee
le 31 Mai 2021
John D'Errico
le 31 Mai 2021
What is w21? w2? w3? Will you keep that a secret? :) If you don't tell us, how can we help you?
Then you try to convert something (unknown, again, you give us no clue) into a double. But does that variable contain symbolic unknowns? (It surely does, given the error.)
How can MATLAB convert something into a number when it is an unknown value?
And how can we help you if you don't give us any useful information?
Would you go to a doctor and tell him that you have an unknown problem, and then ask him to tell you the color car you drive?
Mahsa Babaee
le 31 Mai 2021
Réponses (0)
Cette question est clôturée.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!