Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
An error when "syms" is used
조회 수: 1 (최근 30일)
이전 댓글 표시
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
John D'Errico
2021년 5월 31일
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?
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!