mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-07-05 03:50:59 +08:00
- Multi-AI competition mode (Qwen vs DeepSeek) - Binance Futures integration - AI self-learning mechanism - Professional web dashboard - Complete risk management system
14 lines
233 B
JavaScript
14 lines
233 B
JavaScript
import {tpmt} from "./math.js";
|
|
|
|
export function expIn(t) {
|
|
return tpmt(1 - +t);
|
|
}
|
|
|
|
export function expOut(t) {
|
|
return 1 - tpmt(t);
|
|
}
|
|
|
|
export function expInOut(t) {
|
|
return ((t *= 2) <= 1 ? tpmt(1 - t) : 2 - tpmt(t - 1)) / 2;
|
|
}
|