Skip to content
@addmaple/stats
Search
K
Main Navigation
Guide
API Reference
Examples
GitHub
Appearance
Menu
Return to top
On this page
regressWasmKernels
Perform regression using WASM kernels.
Try it out
Try it out
Run
import { init, regressWasmKernels } from '@addmaple/stats'; await init(); const x = [1, 2, 3, 4, 5]; const y = [2, 4, 6, 8, 10]; const result = regressWasmKernels(x, y); result;
Initializing library...