How can I identify the powers and the coefficient of a semi-known 2 variable function?
조회 수: 1 (최근 30일)
이전 댓글 표시
I am currently trying to corralate Reynold's and Prundtl number to find the Nusselt number. The equation is Nu = C*Re^n*Pr^m , where C,n,m are non integer constants. I have 5 pieces of data where I know Nu,Re, and Pr. My aim is to find C,n,m. I have looked through a bunch of curve fitting techniques but all of them seem to work only for integer powers. Any suggestions?
댓글 수: 0
채택된 답변
Walter Roberson
2018년 12월 8일
take logs.
log(Nu) = log( C) + n * log(Re) + m * log(Pr)
This is a linear system easily fit with the \ operator
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Polynomials에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!