Create a copy of a quadratic matrix expression.
Return value:
Copy of expression object.
Example usage:
orig = x @ Q @ x + p @ x copy = orig.copy() copy += 2.0 # Leaves 'orig' untouched