mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-11-08 13:12:09 +01:00
Fixed typo in MLPPStat::range.
This commit is contained in:
parent
8becbe085a
commit
6b24541095
@ -86,7 +86,7 @@ real_t MLPPStat::range(const Ref<MLPPVector> &x) {
|
||||
ERR_FAIL_COND_V(!x.is_valid(), 0);
|
||||
|
||||
MLPPLinAlg alg;
|
||||
return alg.minvr(x) - alg.minvr(x);
|
||||
return alg.maxvr(x) - alg.minvr(x);
|
||||
}
|
||||
|
||||
real_t MLPPStat::midrange(const Ref<MLPPVector> &x) {
|
||||
|
Loading…
Reference in New Issue
Block a user