Dear all,
car: asc_car + b_time * auto_time
transit: b_time * transit_time
to be RRM equations instead:
car: - math.log(1 + math.exp(0 - asc_car)) - math.log(1 + math.exp(b_time * (transit_time - auto_time)))
transit: - math.log(1 + math.exp(asc_car - 0)) - math.log(1 + math.exp(b_time * (auto_time - transit_time)))
However, it showed "TypeError: must be real number, not Minus". I tried to use sympy and numpy instead of math library to fix it, but it did not work.
Best regards,
Natchaphon