UNPKG

@jrc03c/js-math-tools

Version:
9 lines (6 loc) 159 B
import { apply } from "./apply.mjs" import { ndarray } from "./ndarray.mjs" function ones(shape) { return apply(ndarray(shape), () => 1) } export { ones }