sig23e = [-(1i*(del+x)+Gamma1+g1) 1i*al1*oc 0 ];
sig13e = [1i*al1*oc -(1i*x+g1/2) -1i*oc ];
sig14e = [0 -1i*oc 1i*(del-x)-Gamma1/2-g1/2];
A = [sig23e; sig13e; sig14e];
S1 = V(:,1)*exp(D(1,1))
S1 =
0.369975188379713 - 8.21509945358374e-17i
-1.29955495866915e-17 - 0.0676920303661541i
0.0435604819119288 + 2.39741692879728e-17i
S2 = V(:,2)*exp(D(2,2))
S2 =
0.0101550277323791 + 0.148630850284153i
0.525554721308386 + 0.112301429960421i
-0.260764335167304 - 0.445675984904963i
S3 = V(:,3)*exp(D(3,3))
S3 =
-0.0101550277323791 + 0.148630850284154i
0.525554721308386 - 0.112301429960421i
0.260764335167305 - 0.445675984904962i
S1, S2, and S3 are each 3 x 1 vectors.
So S is a 3 x 3 vector
eqn1, eqn2, eqn3 are each 1 x 3 equations.
eqn1 and eq2 consists of comparing a set of 3 constants to 0. Unless the constants happen to be exactly 0, solve() involving eqn1 or eqn2 will not have a solution.
sol = solve([eqn1,eqn2,eqn3],[A1,A2,A3])
sol =
A1: [0×1 sym]
A2: [0×1 sym]
A3: [0×1 sym]
[eqn1, eqn2, eqn3] is a 3 x 3 set of equations.
You are trying to solve() a 3 x 3 set of equations with respect to exactly 3 variables. The system is overdetermined and does not happen to have a solution.
symvar([eqn1, eqn2, eqn3])
ans = 
The equations do not have any A1, A2, or A3 at all.