[Tex/LaTex] Element-wise exponential function

math-operators

I use $\odot$ for element-wise multiplication of vectors and matrices, and $\oslash$ for element-wise division. What are good ways of denoting an element-wise exponential function? I have tried, using amsmath, \overset{\circ}{\exp} or \exp_\circ, but I don't like any of those very much.

Best Answer

One option:

\documentclass{article}
\usepackage{amsmath}

\newcommand{\Pexp}{\mathbin{\text{$\vcenter{\hbox{\textcircled{$e$}}}$}}}

\begin{document}

${\displaystyle A \Pexp B}\quad
A \Pexp B\quad
L_{A \Pexp B}\quad 
M_{L_{A \Pexp B}} 
$

\end{document}

enter image description here