How to write this equation into code?
古いコメントを表示

I currently have it in this form and I am getting a weird answer:
eqn3 = ((Ac*Pul)/(alpha*CF*miu))*((((Rm*Ac)/(alpha*CF))^2)+(((2*Ac)/(alpha*CF))*((Rm*Vcf)+((alpha*CF*(Vcf^2))/(2*Ac))+((Ac*Pul*(t-tcf))/miu))))^-(1/2) == Vt2;
回答 (1 件)
KSSV
2018 年 5 月 4 日
When you have such a complex equation......it is confusing to type whole equation at once......try to type term by term and then see the answer.
T1 = Ac*Pul/(alpha*CF*mu) ;
T2 = (Rm*Ac/(alpha*CF))^2 ;
T3 = (2*Ac/(alpha*CF))*(Rm*VCF+(alpha*VCF^2)/(2*Ac)+(Ac*Pul*(t-tCF)/mu)) ;
J = T1*(T2+T3)^(-1/2) ;
3 件のコメント
Bryan Lee
2018 年 5 月 4 日
Image Analyst
2018 年 5 月 4 日
We can't do much else until you do. The formula looks correct. Give values for all the variable, and your expected answer that is known to be correct.
Bryan Lee
2018 年 5 月 4 日
編集済み: Walter Roberson
2018 年 5 月 5 日
カテゴリ
ヘルプ センター および File Exchange で Numeric Solvers についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!