Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前被困在这件事上。
我的范围cdf's从 0.12 或 0.25 到 1。根据某些计数,下限是动态的。我想将其更改为从 0 到 1 的范围。但我现在想不出任何东西。
cdf's
如果您有值 [a, 1] 并且希望将它们投影到 [0, 1] 上,则可以使用以下公式:
newVal = (oldVal - a) / (1.0 - a);