Need some help solving non-linear equations
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello! I am trying to solve the following two equations in matlab with known time values
,
, and
and known stress values sigma1, sigma2, and sigma3. The two unknowns are alpha and k. Does anyone have some starting tips to solve them for singular values of each time?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/361789/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/361792/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/361795/image.png)
equation1=(1+k.*(t1^(1-alpha)))/(1+k*(t2^(1-alpha)))==(sigma1/sigma2);
equation2=(1+k.*(t1^(1-alpha)))/(1+k*(t3^(1-alpha)))==(sigma1/sigma3);
댓글 수: 0
답변 (1개)
BOB MATHEW SYJI
2020년 9월 16일
편집: Walter Roberson
2020년 9월 16일
syms k alpha
t1=%enter t1; t2=%enter t2; t3=%enter t3;
sigma1=%enter sigma1; sigma2=%enter sigma2; sigma3=%enter sigma3;
equation1=(1+k.*(t1^(1-alpha)))/(1+k*(t2^(1-alpha)))==(sigma1/sigma2); equation2=(1+k.*(t1^(1-alpha)))/(1+k*(t3^(1-alpha)))==(sigma1/sigma3);
eqns = [equation1, equation2];
S = solve(eqns,[k alpha])
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Systems of Nonlinear Equations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!