12 | | The crucial part is `((delta-1)^2)^(0.5/a[i,7])` which can be simplified to `(delta-1)^(1/a[i,7])`. Looking up the value for `a[i,7]` yields `0.3` for all `i`. As far as i can see the actual error reporting value `(-0.996066)^(1.33333)` could be wrong, since `1/0.3 = 0.3333 <> 1.3333`, but i might be missing some simplifications here. Also the actual error is thrown from a partially differentiated version of this function, so that might be the origin for this discrepancy. |
| 12 | The crucial part is `((delta-1)^2)^(0.5/a[i,7])` which can be simplified to `(delta-1)^(1/a[i,7])`. Looking up the value for `a[i,7]` yields `0.3` for all `i`. As far as i can see the actual error reporting value `(-0.996066)^(1.33333)` could be wrong, since `1/0.3 = 3.3333 <> 1.3333`, but i might be missing some simplifications here. Also the actual error is thrown from a partially differentiated version of this function, so that might be the origin for this discrepancy. |