Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

invsoftplus.m 203 B

1234567891011121314
  1. function y=invsoftplus(beta,x)
  2. % y=invsoftplus(beta,x)
  3. % a = beta(1);
  4. % b = beta(2);
  5. % c = beta(3);
  6. % y = log(exp(a*y)-1)*b + c;
  7. a = beta(1);
  8. b = beta(2);
  9. c = beta(3);
  10. y = log(exp(a*x)-1)*b + c;