Apparently, my comments provided a solution. It might be better to have a more complete question, but here are my comments, slightly alter to show reproducible output:
The complex absolute value is not differentiable. I don't know how to get rid of it in this case. It's not clear what value it should be. This works when you want the real absolute value: Abs'[2] /. Abs -> RealAbs. But that is not the case here. –
Michael E2
33 mins ago
Suppose the result came from
D[Abs[Sin[t + I t]], t] /. t -> 1/3.
(* (1.10904 + 0.886847 I) [Abs'[0.345541 + 0.320851 I] *)
Then the fix is
D[ComplexExpand@Abs[Sin[t + I t]], t] /. t -> RandomReal[]
(8 1.41615 *)
In other words, the solution to your problem cannot be inferred just from the result. You have to fix how the result was generated. –
Michael E2
24 mins ago
Abs'[2] /. Abs -> RealAbs. But that is not the case here. – Michael E2 Dec 07 '21 at 16:08D[Abs[Sin[t + I t]], t] /. t -> RandomReal[]. Then the fix isD[ComplexExpand@Abs[Sin[t + I t]], t] /. t -> RandomReal[]. In other words, the solution to your problem cannot be inferred just from the result. You have to fix how the result was generated. – Michael E2 Dec 07 '21 at 16:17