Fitting a Transcendental Equation with Multiple Solutions
조회 수: 2 (최근 30일)
이전 댓글 표시
Hey all,
I would like to know if there is a way to fit a transcendental equation with multiple solutions. For example, if I had an equation y = f(x,y) that had multiple solutions and thus multiple outputs y for any given input x, is it possible to fit it to a data set that say, takes the form of a matrix, where each column of the matrix represents the set of outputs y, at a specific value of x.
Hopefully my question makes sense!
Thanks.
댓글 수: 4
Walter Roberson
2023년 3월 16일
Do I understand correctly that you have a set of x values, and a matrix M of y values with the same number of columns as numel(x), such that M(:,K) is the complete set of y values that are possible for X(K) ? If so are the values in sorted order, or do they "follow" the branches?
Imagine two sine waves of different phases: at some point they cross. Would it be like
.48 .5 .52
.53 .51 .49
where the rows follow the path from the previous row, or would it be like
.48 .5 .49
.53 .51 .52
where the columns are in sorted order?
The difference would be in the code to figure out which branch to interpolate against.
채택된 답변
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with Curve Fitting Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!