求解非线性方程组(含参数)
조회 수: 4 (최근 30일)
이전 댓글 표시
编写如下代码可以求解两个方程的数值解
[x,y]=solve('-24279+(8.372+8.314*(ln(1-y)-ln(1-x)))*2850=0','-16660+(11.72+8.314*(ln(y)-ln(x)))*2850=0');
>> x=vpa(x,4)
y=vpa(y,4)
现在想要将2850换为变参数t(2000-3000的整数),想得到x=f(t); y=f(t)的表达式,用solve函数的话无法求解,在论坛里面发现有人用fsolve求解,请问该如何解决?
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Assembly에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!