I was wondering is there a way to replace complex I to -I. All variables in the expression are real, so basically i just need that switch of I.
For long expressions, it takes too long.
Thanks!
How about
{a + I b, c - I b, d + I (e/f), g + I (h^i)} /. Complex[0, 1] -> Complex[0, -1] (*Answer: {a - I b, -I b + c, d - (I e)/f, g - I h^i}*)