How do I run code before unity physics changes and after unityphysics changes?

Is there a way to run code before unity physics and also after unity physics?
According to the documentation it looks like anything in FixedUpdate will run before unity physics, but is there a way to run something after unity physics?

If I understand the docs correctly you could use yield WaitForFixedUpdate() to run something after the physics part.