In a recent review by Gabrielsson and Hjorth (AAPS Jan 2016), it was suggested to rewrite the effect function in the Jumbe model as:
if C> 0, then S© = 1 + kkill,max * (C/KC50 + C); if C=0, then S© = 1.
I'm having trouble with the PML syntax to implement this. My current code below brings back an error "assignment only allowed at top level. Suggestions?
Thanks,
Luke
if(C > 0) {Inh = 1+ Kmax * (C^delta / ( KC50^delta + C^delta))} else{if(C = 0) {Inh = 1}}