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

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

Please be more specific. I don't understand what you are asking for help with.
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일

0 개 추천

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.

카테고리

도움말 센터File Exchange에서 Programming에 대해 자세히 알아보기

제품

릴리스

R2023a

태그

질문:

2024년 1월 30일

답변:

2024년 1월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by