フィルターのクリア

Function used in fsolve with array coefficients

2 ビュー (過去 30 日間)
Saeid
Saeid 2018 年 10 月 21 日
コメント済み: Walter Roberson 2018 年 10 月 22 日

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 件のコメント
Saeid
Saeid 2018 年 10 月 21 日
Hi Walter, I have access to the Symbolic Toolbox. As to the fi, the problem is that every time I load the ai from a new excel file there will be a new number of coefficients.
Walter Roberson
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.

サインインしてコメントする。

採用された回答

Matt J
Matt J 2018 年 10 月 22 日
編集済み: Matt J 2018 年 10 月 22 日
You should be passing ai to MyFun. The size of the ai array can be determined inside MyFun, and from that the number of coefficients.
Xi=fsolve(@(x)MyFun(x,ai),X0) ;
function out=MyFun(x,ai)
[m,n]=size(ai);
out=...
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by