neuropause-sdk
v1.0.0
Published
NeuroPause SDK — UBS-2027 coherence, COG–COP stability & energetic analytics
Maintainers
Readme
NeuroPause SDK v1.0.0 (JavaScript)
A scientific coherence & stability analytics SDK based on the UBS-2027 framework.
Install
npm install neuropause-sdkUsage
const { computeCoherence, computeStability, computeIcs10 } = require('neuropause-sdk');
// Compute coherence (CAR)
console.log(computeCoherence(25)); // 0.9241
// Compute stability (JDR%)
console.log(computeStability(80, 95)); // 0.8421
// Compute ICS-10 energetic signature
console.log(computeIcs10(10)); // 0.9999999958Features
- Coherence Analytics - Sigmoid-based coherence computation
- Stability Engine - Force/balance ratio calculations
- ICS-10 Signature - Hyperbolic tangent transformation
- Privacy Utilities - Data anonymization functions
API Reference
computeCoherence(value)
Computes coherence score using sigmoid transformation.
value(number): Non-negative input value- Returns: Coherence score between 0 and 1
computeStability(force, balance)
Computes stability ratio.
force(number): Force valuebalance(number): Balance value (must not be zero)- Returns: Stability ratio
computeIcs10(value)
Computes ICS-10 energetic signature.
value(number): Input value- Returns: Value between -1 and 1
anonymize(data)
Removes personal identifiable information from data object.
data(object): Data to anonymize- Returns: Anonymized copy
License
Proprietary - NeuroPause Labs
