mat.import({
index: math.index,
exp: x => mapped(math.exp, x),
log: mapLog,
gamma: x=> mapped(math.gamma, x),
square: x=> mapped(math.square, x),
sin: x => mapped(math.sin, x),
cos: x => mapped(math.cos, x),
cube: x => mapped(math.cube, x),
cbrt: x => mapped(x2 => math.cbrt(x2), x),
acos: x => mapped(math.acos, x),
acosh: x => mapped(math.acosh, x),
acot: x => mapped(math.acot, x),
acoth: x => mapped(math.acoth, x),
acsc: x => mapped(math.acsc, x),
acsch: x => mapped(math.acsch, x),
asec: x => mapped(math.asec, x),
asech: x => mapped(math.asech, x),
asin: x => mapped(math.asin, x),
asinh: x => mapped(math.asinh, x),
atan: x => mapped(math.atan, x),
atanh: x => mapped(math.atanh, x),
cosh: x => mapped(math.cosh, x),
cot: x => mapped(math.cot, x),
coth: x => mapped(math.coth, x),
csc: x => mapped(math.csc, x),
csch: x => mapped(math.csch, x),
sec: x => mapped(math.sec, x),
sech: x => mapped(math.sech, x),
sin: x => mapped(math.sin, x),
sinh: x => mapped(math.sinh, x),
tan: x => mapped(math.tan, x),
tanh: x => mapped(math.tanh, x),
},{override:true})