Function used in fsolve with array coefficients
이전 댓글 표시
Using fsolve I want to solve an equation for x which has the follwing form:
a1*f1(x)+a2*f2(x)+...+ai*fi(x)=0
where ai are known coefficients (typically read from an inout excel file), i is the index going from 1 to n and fi are some nonlinear functions of x. So the routine to solve for x should look something like this
ai=xlsread('MyFile.xls',1)
Xi=fsolve(@MyFun,X0)
function MyFun=MyFun(x)
MyFun=...
end
How can I define MyFun knowing that everytime I read a new excel file the number of ai will change?
댓글 수: 4
Walter Roberson
2018년 10월 21일
Do you have access to the Symbolic Toolbox?
Walter Roberson
2018년 10월 21일
If the number of ai will change each time, then how are the fi being generated to match the same size?
Saeid
2018년 10월 21일
Walter Roberson
2018년 10월 22일
You said that the fi are functions. You are reading the ai values in, but not the functions. You have one for each ai value, and you have an indefinite number of ai values. So you must either have a maximum number of ai values and a list of corresponding functions (of which you use the first so-many) or else you must have a way of computing the functions given the index to the function.
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!