solving equation with if statements

20 ビュー (過去 30 日間)
antoine
antoine 2020 年 1 月 17 日
コメント済み: antoine 2020 年 2 月 22 日
Hello
I am trying to solve the following equation given input time and values (y) vectors.
I tried the following
syms theta kappa alpha
if time < alpha
eqn = exp(-kappa*time)==y;
else
eqn = exp(-kappa)*exp(-theta*(time-alpha))==y;
end
vars = [theta kappa alpha];
S=solve(eqn);
but it raises an error...
Conversion to logical from sym is not possible.
I tried to convert alpha into double (i.e. double(alpha) ) in the if statement but it did not work...
Any suggestions?
the data look like :
Picture1.png

採用された回答

Walter Roberson
Walter Roberson 2020 年 1 月 17 日
syms theta kappa alpha time y real
eqn = y == piecewise(time < alpha, exp(-kappa*time), exp(-kappa)*exp(-theta*(time-alpha)));
vars = [theta kappa alpha];
S = solve(eqn, kappa, 'returnconditions', true); %solve for which variable ??
  21 件のコメント
Walter Roberson
Walter Roberson 2020 年 1 月 20 日
Yup, but that gives residue in the range of 62, whereas 5087.59871387777093, 0.00292734523205026836, 803477.437304047635 gives you residue in the range of 39.02 which is significantly better. Given that model, alpha should be large, over 100,000.
antoine
antoine 2020 年 1 月 20 日
ahaha.. I get it. thank you!

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

その他の回答 (2 件)

antoine
antoine 2020 年 1 月 18 日
time and y are vectors (see plot above for data input). all suggestions are welcome.
I can share the data if it helps
thank you ++
  1 件のコメント
Walter Roberson
Walter Roberson 2020 年 1 月 18 日
Unless time and y are vectors of length 3 exactly, it seems unlikely that there would be any solutions.
It looks to me as if what you have should be a modeling task to estimate parameters rather than a set of simultaneous equations.

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


antoine
antoine 2020 年 1 月 18 日
good not know...Not sure I have the skills to do that.
I really appreciated your input and advices.
  1 件のコメント
antoine
antoine 2020 年 2 月 22 日
dear Walter
Just realized I forgot to thank you for your help
Problem is fixed! I got my equations working.
(I am know stuck with other timer/loop function : see 'time-dependant iteration through a loop?' if you have time...)

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

カテゴリ

Help Center および File ExchangeMathematics についてさらに検索

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by