$A$ is a incidence matrix for some undirected graph.
$A^TA$ is a positive definite matrix, so I know that we can factorize it as $A^TA = C + C^T$
There exists always a matrix $C$ such that $C = A^TB$? Satisfying the next requirement, $B^TB = cI$ is a diagonal matrix, being $I$ the identity matrix and $c$ a scalar, and $B$ also is related to the incidence matrix $A$ in the sense that for each edge, we select one node.
$A$ might not be square (more edges than nodes).
For instance,
$ A = \begin{bmatrix}1 & 0 & -1\\-1 & 1 & 0\\0 &-1 & 1\end{bmatrix} \quad B = \begin{bmatrix}0 & 0 & -1 \\ -1 & 0 & 0 \\ 0 & -1 & 0\end{bmatrix}, $ satisfies $A^TA=A^TB+B^TA$ and $B^TB = I$
Note that here I have taken for $B$ all the $-1$ from $A$.
Can I find such $B$ for instance for complete undirected graphs? what about for more general undirected grahps?