Not getting the output even the variable is involve in the function

1 回表示 (過去 30 日間)
Ehtisham
Ehtisham 2024 年 1 月 30 日
回答済み: Voss 2024 年 1 月 30 日
Dear fellows in the shared Matlab gui file i am varing the Relative ligand concentration to EC50( even involve in the code) but same output parameters cvs file. kindly guide
  2 件のコメント
Joe Vinciguerra
Joe Vinciguerra 2024 年 1 月 30 日
Please be more specific. I don't understand what you are asking for help with.
Ehtisham
Ehtisham 2024 年 1 月 30 日
In my MatLab gui code relative ligand to EC50 variable is passing the function and ode but in output it showing the same result even i vary the value of relative ligand toEC50

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

回答 (1 件)

Voss
Voss 2024 年 1 月 30 日
In calculate_kf, you have:
Kf_L = (L_Active /L_Active +1);
which produces Kf_L = 2 for any finite non-NaN non-zero L_Active.
I suspect you meant:
Kf_L = L_Active / (L_Active +1);
(Similarly on the previous line for calculating Kf_LMin from L_min. There may be other unintended calculations in the code; I didn't check everywhere.)
Check if that's what you really meant, and see if changing those lines gives reasonably varying results.

カテゴリ

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

タグ

製品


リリース

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by