Browse Source

We start not at 0, but use the mean value (given in PARAM2) as

start value
pre-master-46
Holger Vogt 4 years ago
parent
commit
b1e73370ed
  1. 2
      src/frontend/trannoise/1-f-code.c

2
src/frontend/trannoise/1-f-code.c

@ -237,7 +237,7 @@ trrandom_state_init(int rndtype, double TS, double TD, double PARAM1, double PAR
this->TD = TD;
this->PARAM1 = PARAM1;
this->PARAM2 = PARAM2;
this->value = 0.0;
this->value = PARAM2;
return this;
}

Loading…
Cancel
Save