Is it possible to reformuate my problem to get rid of the Invalid constraint with: {convex} <= {convex} error?

Here is my code for the problem formulation

cvx_begin
variable f(J,1) complex

minimize( (w * Hm * f)’ * (w’ * Hm * f))
subject to
(1) a.’ * f == 1;
(2) f’ * f <= 1/(J/gamma);
(3a) for i = 1:K
(3b) (Hm(i , : ) * f)’ * (Hm(i , : ) * f) <= tau. * (f’ * f);
(3c) end
cvx_end

where \mathbf{H}_\mathrm{m} is known complex square matrix, \mathbf{w} and \mathbf{a} are known complex vectors, and tau, eps, gamma, J, K are all known real scalars. And the error invalid constraint {convex} <= {convex} will occur in constraint (3b).

Please let me first explain why I wrote the constraint (3), although I knew it would be an invalid constraint ({convex} <= {convex}). The actual meaning of constraint (3) is that, for the i th receiving antenna of all K receiving antennas, the received power from the transmit signal (unit power transmit signal) after the transmitting weight \mathbf{f} and the channel \mathbf{H}_\mathrm{m}(i, : ) (\mathbf{H}_\mathrm{m} is the channel matrix between transmitting and receiving antennas) is less a certain level, which is proportional to the transmitting power. The transmit power level is calculated by \mathbf{f}^{\prime}\mathbf{f} and the relative loss is tau.

Is that possible that I further formulate this constraint to get rid of the invalid constraint error and make it be accepted by CVX?

I don’t believe it would be possible for constraint (3b) to be both convex and for the problem to be feasible, because (3b) convex would require f = vector of zeros, which makes the problem infeasible due to constraint (1).

You need to move all quadratic terms of constraint (3b) to the LHS, and find the matrix A, such that the constraint is of the form f'*A'f <= 0, where A must be positive semidefinite. if that can 't be done, the constraint is not convex. If it can be done, f = vector of zeros would be the only feasible solution of that constraint, but that would violate constraint (1).

Perhaps the model, as is, is a good model for your purposes. But if so, it would be non-convex, and you would need a tool other than CVX, for example YALMIP.

Really thanks Mark! I am considering that whether it’s just a good model for my purpose but not gonna have a feasible solution. I will check the LHS formulation first! Thanks again!

If your model is always infeasible regardless of the data, that’s not much of a model.

My point is that your model is either non-convex or infeasible. A non-convex model can be a perfectly fine model, but it can’t be implemented in CVX .

Yes, I think you are right. Btw, could you enlighten me a little bit more about why the \mathbf{A} has to be PSD to make the inequality constraint convex?

LHS <= 0 convex requires LHS to be convex. For hermitian A, f'*A*f is convex iff A is psd.

Thanks! I might sound stupid, but to make LHS >=0 and LHS <=0 are convex both require A to be psd? Or did I misunderstand anything?

LHS <= 0 is convex constraint if LHS is convex.
LHS >= 0 is convex constraint if LHS is concave.

Really thanks Mark! But I have one last stupid question. If A is PSD, there might be a f \neq 0, which makes the quadratic form is 0, right? When A is a singular matrix I think? So maybe for some tau, the A matrix can have non-zero vector solution. Anyway, it’s just very special case maybe.

I believe you are correct.

Hi Mark, sry it’s me again xD. So I spent some time and now I have got some conclusions and some more questions here.
For all K constraints in (3), the LHS formulation can be written as

(3a) for i = 1:K
(3b) f’ * ( (Hm(i , : )’ * Hm(i , : ) + eps .* I - tau.* I) * f <= 0;
(3c) end
Please note that I added a scalar eps here, which is omitted in my former formulation for simplicity and \mathbf{I} denotes the identity matrix. I have checked all rank 1 Hermitian outcome of Hm(i, : )’ * Hm(i, : ) and they are PSD.

So I further formulate (3b) with eigen decomposition as

f’ * ( U * ( \Gamma + (eps - tau) .* \mathbf{I}) * U’ ) * f <= 0;

As you have taught me, this constraint will be convex iff ( U * ( \Gamma + (eps - tau) .* \mathbf{I}) * U’ ) is PSD, which means the eps has to be larger than tau, otherwise it is non-convex (eps actually saves me here to make the PSD possible). Then for my case, it’s not that common to have eps = tau. Therefore, normally the LHS will be convex for eps > tau (positive definite matrix here), and it will be exactly what you mentioned, which is that f = 0 vector is the solution here.

But maybe due to the exsitence of constraint (1) and (2), when I fed the problem to CVX with eps > tau, it actually solved the problem with non-zero solution. So does it mean CVX just finds a solution under this formulation, which tried its best to satisfy all the constraints here, including letting the LHS in (3) to be as close as to 0?

Meanwhile, I tried to get rid of the quadratic constraint in (3) and reformulate the whole problem as below

cvx_begin
variable f(J,1) complex

minimize( (w * Hm * f)’ * (w’ * Hm * f))
subject to
(1) a.’ * f == J ./ sqrt(gamma);
(2) abs( f ) <= 1 ;
(3a) for i = 1:K
(3b) f’ * ( (Hm(i , : )’ * Hm(i , : ) + eps .* I ) * f <= tau;
(3c) end
cvx_end

The major modification here is in constraint (1) and (2). These two constraints are designed to obtain the beamforing gain that not lower than a desired level, which is \frac{|\mathbf{aw}|^2}{\mathbf{w}^H\mathbf{w}} \geq J/gamma. Before, I fix \mathbf{aw}=1 and let \mathbf{w}^H\mathbf{w}=1 to achieve that gain requirement. Now, by constraint (2), I hope that each entry of \mathbf{f} won’t exceed unit magnitude, and along with the constaint (1), maybe I can constrain the \mathbf{f}^H\mathbf{f} to get closer to the value of (J^2 ./ gamma)? If that’s the case, then maybe I can get rid of the f’ * f in (3) to make LHS <= a scalar that is less than (J^2 ./ gamma) with level of tau. But I am still considering it.

Your paragraph

But maybe due to the exsitence of constraint (1) and (2), when I fed the problem to CVX with eps > tau, it actually solved the problem with non-zero solution. So does it mean CVX just finds a solution under this formulation, which tried its best to satisfy all the constraints here, including letting the LHS in (3) to be as close as to 0?

is confusing. Please show a complete reproducible problem, complete will all input data, and all solver and CVX output, as well as the optimal variable value (argmin).

Sure, but the Hm matrix is quite big, should I email it to you or just paste it here?

The Hm matrix will be split in two parts.

Hm = [Hm1;Hm2];
J=36;
K=36;
w=ones(36,1);
w = w./ norm (w);
as_ele_Tx = ones(36,1);
gamma=10^(1./10); % gamma tradeoff for gain
tau = (10^(-80./10)); % per-antenna residual SI power
eps = (10^(-50 ./ 10)) ; % estimation error

cvx_begin
variable f(J,1) complex

minimize( (w’ * Hm * f)’ * (w’ * Hm * f) + eps * (w’ * w) * (f’ * f) )

subject to

as_ele_Tx.'* f == 1;

f’*f <= 1/(J/gamma);

for i = 1:K

f’ * (Hm(i , : )’ * Hm(i , : ) + eps .* diag(ones(J,1)) - tau.* diag(ones(J,1)))* f <= 0;

end

cvx_end

the solution of f is : f= [0.0303824473837404 + 0.000135791359191675i
0.0303401946348155 + 0.000242656577132709i
0.0301963439166084 + 0.000426996230142492i
0.0301943835237665 + 0.000425920887151213i
0.0303372277021624 + 0.000242264201679140i
0.0303791087959261 + 0.000139930993293148i
0.0300153818336888 + 9.65047112712905e-05i
0.0301074203549018 - 0.000180532345718599i
0.0304842274286617 - 0.000423120965044536i
0.0304854451719929 - 0.000419270752199532i
0.0301120983002693 - 0.000181780042980406i
0.0300227457178182 + 8.95821390103649e-05i
0.0310106810202765 + 0.000329829582266032i
0.0307373430462984 + 0.000787303826581605i
0.0298691758668115 + 0.00101606686535783i
0.0298736523543546 + 0.00100715359941722i
0.0307324280058940 + 0.000790406131397751i
0.0309922388133855 + 0.000341483399698313i
0.0291478606687849 - 0.000569796687402456i
0.0292053798267866 - 0.00165019326964605i
0.0310892088079317 - 0.00105615044316890i
0.0310732690798923 - 0.00106820394178530i
0.0292043401897380 - 0.00165098274402403i
0.0291884525085643 - 0.000578524139070226i
0.0329691279861696 - 9.70720118825339e-05i
0.0313760179897504 + 0.00408315431611590i
0.0304633596993217 + 0.000830387786162535i
0.0304583352092505 + 0.000846174976714681i
0.0313658697955821 + 0.00412702202374999i
0.0329317955067508 - 0.000111536017811344i
0.0142399995914634 - 0.00212056298608348i
0.0145035032890048 + 0.000343407071876693i
0.0138482867364024 - 0.00219676611096253i
0.0138916947827682 - 0.00222008264119658i
0.0144660933163188 + 0.000379515224784629i
0.0143049941041704 - 0.00215697319717633i]

Here is the CVX output:

Calling SDPT3 4.0: 2855 variables, 111 equality constraints
For improved efficiency, SDPT3 is solving the dual problem.

num. of constraints = 111
dim. of sdp var = 4, num. of sdp blk = 1
dim. of socp var = 2812, num. of socp blk = 38
dim. of linear var = 37
dim. of free var = 2 *** convert ublk to lblk


SDPT3: Infeasible path-following algorithms


version predcorr gam expon scale_data
HKM 1 0.000 1 0
it pstep dstep pinfeas dinfeas gap prim-obj dual-obj cputime

0|0.000|0.000|5.3e+01|1.3e+01|1.3e+04| 1.895554e+01 0.000000e+00| 0:0:00| chol 1 1
1|0.977|0.975|1.2e+00|4.2e-01|6.3e+02| 2.709536e+02 -1.564900e+01| 0:0:00| chol 1 1
2|0.988|0.996|1.4e-02|1.2e-02|2.7e+01| 2.072589e+01 -5.172325e-01| 0:0:00| chol 1 1
3|0.979|0.963|3.0e-04|1.7e-03|1.0e+00| 4.653641e-01 -1.773503e-02| 0:0:00| chol 1 1
4|0.937|0.669|1.9e-05|6.9e-04|2.4e-01| 3.339385e-02 -5.990972e-03| 0:0:01| chol 1 1
5|0.934|0.977|1.2e-06|3.1e-05|1.0e-02| 2.218612e-03 -1.356540e-04| 0:0:01| chol 1 1
6|0.914|0.975|1.0e-07|1.9e-06|6.1e-04| 9.060307e-05 -1.211056e-05| 0:0:01| chol 1 1
7|0.894|0.778|1.9e-08|5.1e-07|7.2e-05|-1.279028e-04 -1.068150e-05| 0:0:01| chol 1 2
8|0.295|0.147|5.8e-08|4.4e-07|1.3e-04|-7.542869e-04 -1.063566e-05| 0:0:01| chol 2 2
9|0.034|0.055|1.1e-07|4.1e-07|2.2e-04|-2.449515e-03 -1.063154e-05| 0:0:01| chol 1 2
10|0.016|0.009|1.2e-07|4.1e-07|7.8e-04|-1.079578e-02 -1.063059e-05| 0:0:01|
lack of progress in infeas

number of iterations = 10
primal objective value = -1.27902754e-04
dual objective value = -1.06815023e-05
gap := trace(XZ) = 7.15e-05
relative gap = 7.15e-05
actual relative gap = -1.17e-04
rel. primal infeas (scaled problem) = 1.90e-08
rel. dual " " " = 5.07e-07
rel. primal infeas (unscaled problem) = 0.00e+00
rel. dual " " " = 0.00e+00
norm(X), norm(y), norm(Z) = 7.6e+01, 3.1e+00, 4.5e+00
norm(A), norm(b), norm(C) = 5.5e+01, 2.0e+00, 7.3e+00
Total CPU time (secs) = 0.79
CPU time per iteration = 0.08
termination code = 0
DIMACS: 1.9e-08 0.0e+00 1.9e-06 0.0e+00 -1.2e-04 7.2e-05


Status: Solved
Optimal value (cvx_optval): +6.81502e-07

Here is Hm1:

Hm1 =[0.00364260800000000 + 0.00150379800000000i 0.00225635200000000 - 0.00107919200000000i 0.000282878700000000 - 0.00137477700000000i -0.000468563000000000 - 0.000511359800000000i -0.000484533200000000 + 0.000236321400000000i 8.19933400000000e-05 + 0.000136496900000000i -0.00717287500000000 - 0.00219247800000000i -0.00359895100000000 + 0.00205271400000000i -0.000265417100000000 + 0.00200448600000000i 0.000872365100000000 + 0.000791984000000000i 0.000665827800000000 - 0.000640995600000000i -0.000318967100000000 - 0.000385946700000000i 0.0141082400000000 + 0.00283914000000000i 0.00526788900000000 - 0.00339907900000000i 0.000739604200000000 - 0.00302681400000000i -0.00244806700000000 - 0.00122470300000000i -0.000248050200000000 + 0.00211988800000000i 0.00121491000000000 - 0.000264584100000000i -0.0259726800000000 - 0.00312138100000000i -0.00874467600000000 + 0.00356050800000000i 0.000173563600000000 + 0.00764228400000000i 0.00588517100000000 - 0.00269312300000000i -0.00360189300000000 - 0.00204636100000000i 0.000216860900000000 + 0.00201329300000000i 0.0460344500000000 + 0.0114869100000000i 0.0177188600000000 - 0.0104541900000000i -0.0140808600000000 - 0.00747839800000000i 0.00139051400000000 + 0.0104116200000000i 0.00310979200000000 - 0.00395207600000000i -0.00206735900000000 + 0.000406579300000000i -0.0923567800000000 - 0.0285803300000000i 0.00829458700000000 + 0.0127615200000000i 0.0137567700000000 - 0.00919952000000000i -0.00879294900000000 - 0.00407963700000000i 0.00231483200000000 + 0.00328226300000000i -0.000524192200000000 - 0.00189450700000000i
0.00196750500000000 - 0.00122703000000000i 0.000443850700000000 - 0.000106160500000000i 0.00101659600000000 + 0.000495489800000000i 0.00106078800000000 - 0.000393351600000000i -0.000171070700000000 - 0.00118374300000000i -0.000333794300000000 + 0.000206129300000000i -0.00289549400000000 + 0.00229140000000000i -0.000890466900000000 - 0.00100889400000000i -0.00259096300000000 - 0.00116274700000000i -0.00207892800000000 + 0.00149774100000000i 0.00117056800000000 + 0.00158450000000000i 0.000551496200000000 - 0.000441811000000000i 0.00377707700000000 - 0.00377415500000000i 0.00289919800000000 + 0.00495399500000000i 0.00657273200000000 + 0.00163654300000000i 0.00279384900000000 - 0.00425464300000000i -0.00328015800000000 - 0.00136281900000000i -0.000468123200000000 + 0.00178529100000000i -0.00540663700000000 + 0.00328739500000000i -0.0108042900000000 - 0.0139455200000000i -0.0147349100000000 - 0.000696758000000000i -2.79436900000000e-05 + 0.0106574000000000i 0.00647044400000000 - 0.00349046500000000i -0.00315443900000000 - 0.00227519200000000i 0.0133852600000000 - 0.00651255100000000i 0.0358952800000000 + 0.0360712400000000i 0.0265995800000000 - 0.0132940000000000i -0.0172008600000000 - 0.00915987800000000i 0.00190364900000000 + 0.0113389700000000i 0.00349223400000000 - 0.00360015500000000i 0.00788561700000000 + 0.00796576800000000i -0.0994357900000000 - 0.0462843300000000i 0.00555236900000000 + 0.0204992500000000i 0.0164968400000000 - 0.0107441200000000i -0.00970411800000000 - 0.00381031700000000i 0.00225073400000000 + 0.00355730300000000i
8.09910600000000e-05 - 0.00123590000000000i 0.00105392400000000 + 0.000475853300000000i 0.00152447100000000 + 0.000460218400000000i 0.00106437000000000 - 0.000400855800000000i 0.00108955700000000 - 0.000426450400000000i -0.000453469700000000 - 0.000324559300000000i 3.44129100000000e-05 + 0.00156289400000000i -0.00269591200000000 - 0.00111550000000000i -0.00298071300000000 - 0.000703778000000000i -0.00189252400000000 - 0.000214561400000000i -0.00204182900000000 + 0.00158293200000000i 0.000613987300000000 + 0.000520801300000000i 0.000367458500000000 - 0.00189128600000000i 0.00678314700000000 + 0.00147478700000000i 0.00495937100000000 + 0.00230493000000000i 0.00520970100000000 + 0.00165498200000000i 0.00262848500000000 - 0.00436098100000000i -0.00166742800000000 - 0.00114191400000000i -0.000765997300000000 + 0.00553021200000000i -0.0149036200000000 - 0.000286246500000000i -0.00986280600000000 - 0.00934975400000000i -0.0141118000000000 - 0.00218835900000000i 0.000163713600000000 + 0.0105604700000000i 0.00526053100000000 - 0.00171055000000000i -0.0111481200000000 - 0.00723174800000000i 0.0262982700000000 - 0.0135719700000000i 0.0313661900000000 + 0.0348314000000000i 0.0277879000000000 - 0.0123466000000000i -0.0171059700000000 - 0.00900544300000000i 0.000402681500000000 + 0.00979005900000000i 0.0133417000000000 - 0.00787425400000000i 0.00533262300000000 + 0.0205458000000000i -0.0973891900000000 - 0.0490334900000000i 0.00429192300000000 + 0.0210471600000000i 0.0165443000000000 - 0.0106015200000000i -0.00872039600000000 - 0.00471149200000000i
-0.000450353300000000 - 0.000327059500000000i 0.00109344300000000 - 0.000421452600000000i 0.00106886900000000 - 0.000390037200000000i 0.00152070200000000 + 0.000463319800000000i 0.00105320200000000 + 0.000481939400000000i 8.59408300000000e-05 - 0.00123509000000000i 0.000607225700000000 + 0.000520362000000000i -0.00205843000000000 + 0.00156534300000000i -0.00189941000000000 - 0.000231118100000000i -0.00296943800000000 - 0.000720289500000000i -0.00269744600000000 - 0.00111103300000000i 2.90406100000000e-05 + 0.00156069900000000i -0.00166027600000000 - 0.00114932000000000i 0.00266334000000000 - 0.00434921500000000i 0.00522270100000000 + 0.00171310300000000i 0.00493582900000000 + 0.00231960500000000i 0.00676322100000000 + 0.00149098400000000i 0.000388581600000000 - 0.00188701900000000i 0.00530627000000000 - 0.00166506400000000i 0.000124399100000000 + 0.0105876900000000i -0.0141041300000000 - 0.00220535700000000i -0.00981099800000000 - 0.00949336700000000i -0.0148262300000000 - 0.000380945400000000i -0.000747518900000000 + 0.00551039900000000i 0.000352306300000000 + 0.00978063800000000i -0.0169441700000000 - 0.00908249100000000i 0.0279177900000000 - 0.0122798000000000i 0.0311241100000000 + 0.0350119600000000i 0.0263449500000000 - 0.0135689000000000i -0.0112161300000000 - 0.00721055400000000i -0.00874386800000000 - 0.00465642900000000i 0.0165415200000000 - 0.0105206700000000i 0.00411247300000000 + 0.0209197600000000i -0.0972910000000000 - 0.0493487000000000i 0.00566943500000000 + 0.0204740400000000i 0.0133201800000000 - 0.00773214300000000i
-0.000329295500000000 + 0.000206555700000000i -0.000178179900000000 - 0.00117465100000000i 0.00105275200000000 - 0.000397165800000000i 0.00101465100000000 + 0.000484701300000000i 0.000442861300000000 - 0.000106832200000000i 0.00196685900000000 - 0.00123069700000000i 0.000540362200000000 - 0.000440742800000000i 0.00116844000000000 + 0.00157649600000000i -0.00206766700000000 + 0.00150264000000000i -0.00257860400000000 - 0.00114084100000000i -0.000900928000000000 - 0.000999593600000000i -0.00289304400000000 + 0.00229428100000000i -0.000459039000000000 + 0.00178530400000000i -0.00326924600000000 - 0.00135276400000000i 0.00278190000000000 - 0.00425557500000000i 0.00651753500000000 + 0.00158694400000000i 0.00292811200000000 + 0.00492791300000000i 0.00379160500000000 - 0.00375462700000000i -0.00317659600000000 - 0.00228666700000000i 0.00645572700000000 - 0.00352988800000000i 4.07338000000000e-05 + 0.0106105100000000i -0.0146879100000000 - 0.000725253600000000i -0.0107999000000000 - 0.0138885400000000i -0.00542584000000000 + 0.00331607300000000i 0.00346007000000000 - 0.00360344700000000i 0.00191634100000000 + 0.0112550500000000i -0.0173022300000000 - 0.00901287300000000i 0.0265125300000000 - 0.0133473600000000i 0.0360390900000000 + 0.0361159800000000i 0.0133986600000000 - 0.00666567400000000i 0.00226890400000000 + 0.00349346100000000i -0.00964860700000000 - 0.00374169000000000i 0.0163935300000000 - 0.0108209200000000i 0.00578319500000000 + 0.0204518200000000i -0.0996576900000000 - 0.0458514400000000i 0.00771696200000000 + 0.00777214400000000i
8.18872600000000e-05 + 0.000135368500000000i -0.000480989800000000 + 0.000238422800000000i -0.000469533500000000 - 0.000506054000000000i 0.000263337400000000 - 0.00136726300000000i 0.00223634700000000 - 0.00109464000000000i 0.00365048700000000 + 0.00147145100000000i -0.000317649900000000 - 0.000381312300000000i 0.000665217100000000 - 0.000640230900000000i 0.000876091800000000 + 0.000786793400000000i -0.000245863300000000 + 0.00199107200000000i -0.00355626700000000 + 0.00209295100000000i -0.00717487200000000 - 0.00212604400000000i 0.00121561900000000 - 0.000267617900000000i -0.000249253300000000 + 0.00211723600000000i -0.00245687400000000 - 0.00122295400000000i 0.000711962100000000 - 0.00299733400000000i 0.00522563700000000 - 0.00344408200000000i 0.0140454600000000 + 0.00273533500000000i 0.000214023000000000 + 0.00203103700000000i -0.00361385400000000 - 0.00204200000000000i 0.00586291400000000 - 0.00271533100000000i 0.000160535000000000 + 0.00764042400000000i -0.00868661800000000 + 0.00358338900000000i -0.0258776700000000 - 0.00293009400000000i -0.00206409000000000 + 0.000408987100000000i 0.00310292900000000 - 0.00392082200000000i 0.00144658100000000 + 0.0104384900000000i -0.0141255800000000 - 0.00751527400000000i 0.0177829100000000 - 0.0104851400000000i 0.0459658400000000 + 0.0111565600000000i -0.000540960000000000 - 0.00188105400000000i 0.00230737300000000 + 0.00327434600000000i -0.00878557500000000 - 0.00408054000000000i 0.0137575700000000 - 0.00918893600000000i 0.00816613700000000 + 0.0127397400000000i -0.0916730400000000 - 0.0279794300000000i
-0.00167856600000000 - 0.000878007300000000i -0.00126816200000000 + 0.000474880800000000i -0.000295808900000000 + 0.000836636000000000i 0.000293083300000000 + 0.000346055300000000i 0.000322098100000000 - 4.72474000000000e-05i -6.85884100000000e-05 - 9.70405400000000e-05i 0.00341883800000000 + 0.00142447800000000i 0.00218407500000000 - 0.000995304500000000i 0.000276624500000000 - 0.00134229300000000i -0.000473705300000000 - 0.000495330100000000i -0.000457831200000000 + 0.000221140500000000i 5.94872400000000e-05 + 0.000146321200000000i -0.00707189500000000 - 0.00212914300000000i -0.00350988700000000 + 0.00201049000000000i -0.000286451600000000 + 0.00195525800000000i 0.000864157100000000 + 0.000808482600000000i 0.000653117600000000 - 0.000641233300000000i -0.000306650400000000 - 0.000379892500000000i 0.0140308900000000 + 0.00271360200000000i 0.00517509000000000 - 0.00346174800000000i 0.000683129300000000 - 0.00299835000000000i -0.00243565400000000 - 0.00121296800000000i -0.000239226400000000 + 0.00211389300000000i 0.00120159300000000 - 0.000274810500000000i -0.0258820300000000 - 0.00278161200000000i -0.00864225900000000 + 0.00363298100000000i 0.000228941400000000 + 0.00766234900000000i 0.00586538400000000 - 0.00274361900000000i -0.00361776500000000 - 0.00200027900000000i 0.000242499300000000 + 0.00201346800000000i 0.0461847400000000 + 0.0108599800000000i 0.0176684900000000 - 0.0107540300000000i -0.0142148300000000 - 0.00743506600000000i 0.00146822000000000 + 0.0103664500000000i 0.00307023200000000 - 0.00395871500000000i -0.00206621600000000 + 0.000408234600000000i
-0.00114466000000000 + 0.000539245600000000i -0.000324192500000000 + 0.000311725000000000i -0.000346131800000000 - 0.000147768500000000i -0.000418679700000000 + 0.000136514800000000i -0.000178029200000000 + 0.000568497500000000i 0.000239572300000000 - 6.21459300000000e-05i 0.00187252200000000 - 0.00111103100000000i 0.000471826900000000 - 0.000100603600000000i 0.000933007300000000 + 0.000461907500000000i 0.00103065300000000 - 0.000373025900000000i -0.000159100100000000 - 0.00111128800000000i -0.000331678900000000 + 0.000168962700000000i -0.00287512100000000 + 0.00221183000000000i -0.000909050000000000 - 0.00105168900000000i -0.00257838200000000 - 0.00114088000000000i -0.00206242500000000 + 0.00147999100000000i 0.00116696000000000 + 0.00153277100000000i 0.000538270800000000 - 0.000415092100000000i 0.00379789300000000 - 0.00369094700000000i 0.00292573000000000 + 0.00495462500000000i 0.00658082300000000 + 0.00157608600000000i 0.00278238200000000 - 0.00424920200000000i -0.00328519000000000 - 0.00133974300000000i -0.000450278200000000 + 0.00177213300000000i -0.00540860400000000 + 0.00321010400000000i -0.0107751200000000 - 0.0138840900000000i -0.0147549500000000 - 0.000746837300000000i -5.03766300000000e-06 + 0.0106547000000000i 0.00645812800000000 - 0.00351924900000000i -0.00316357900000000 - 0.00226692900000000i 0.0134543900000000 - 0.00657006200000000i 0.0360011700000000 + 0.0361799000000000i 0.0266247700000000 - 0.0133935400000000i -0.0172276000000000 - 0.00907410300000000i 0.00191597200000000 + 0.0113060800000000i 0.00347868700000000 - 0.00358766900000000i
-0.000201875800000000 + 0.000770784700000000i -0.000367399600000000 - 0.000142816900000000i -0.000634688100000000 - 0.000189685700000000i -0.000706275600000000 + 0.000233841200000000i -0.000436990600000000 + 0.000147773000000000i 0.000298169600000000 + 0.000260330400000000i 0.000127405300000000 - 0.00114385800000000i 0.000986372400000000 + 0.000449610500000000i 0.00144636200000000 + 0.000464341000000000i 0.00104397900000000 - 0.000335355800000000i 0.00102809000000000 - 0.000410274600000000i -0.000400116100000000 - 0.000331055200000000i -4.67515900000000e-06 + 0.00150940400000000i -0.00267473200000000 - 0.00112191000000000i -0.00294489800000000 - 0.000747253800000000i -0.00186613300000000 - 0.000296294500000000i -0.00204118600000000 + 0.00156085400000000i 0.000575756800000000 + 0.000532633200000000i 0.000415296600000000 - 0.00185804000000000i 0.00678437400000000 + 0.00149774700000000i 0.00492588500000000 + 0.00232150700000000i 0.00517864400000000 + 0.00173736400000000i 0.00265981300000000 - 0.00433595100000000i -0.00164325300000000 - 0.00115653400000000i -0.000841940000000000 + 0.00549096300000000i -0.0147930000000000 - 0.000424035500000000i -0.00980074000000000 - 0.00950631800000000i -0.0140897900000000 - 0.00226202800000000i 0.000129948800000000 + 0.0105386800000000i 0.00526345000000000 - 0.00166139600000000i -0.0111341500000000 - 0.00727729200000000i 0.0263767900000000 - 0.0134332300000000i 0.0311512800000000 + 0.0351809200000000i 0.0278316300000000 - 0.0122789600000000i -0.0170464700000000 - 0.00907520000000000i 0.000330844500000000 + 0.00975018400000000i
0.000300566000000000 + 0.000259676600000000i -0.000436332000000000 + 0.000148616200000000i -0.000706478100000000 + 0.000235022600000000i -0.000633926800000000 - 0.000183821200000000i -0.000366964500000000 - 0.000141906300000000i -0.000199421700000000 + 0.000771897400000000i -0.000403338300000000 - 0.000329177500000000i 0.00102928300000000 - 0.000408341000000000i 0.00104622600000000 - 0.000341052100000000i 0.00144222300000000 + 0.000456360800000000i 0.000989408000000000 + 0.000440240800000000i 0.000122331700000000 - 0.00114468800000000i 0.000585360800000000 + 0.000527340500000000i -0.00204702100000000 + 0.00156892000000000i -0.00187111000000000 - 0.000292928200000000i -0.00293457200000000 - 0.000724902200000000i -0.00267314100000000 - 0.00110704900000000i -7.64695200000000e-06 + 0.00150541600000000i -0.00165256000000000 - 0.00116099900000000i 0.00265522700000000 - 0.00437410700000000i 0.00518689800000000 + 0.00168342100000000i 0.00492337500000000 + 0.00232856700000000i 0.00676146000000000 + 0.00148780300000000i 0.000405958600000000 - 0.00185781900000000i 0.00526886700000000 - 0.00164627500000000i 0.000124827700000000 + 0.0105198300000000i -0.0141400300000000 - 0.00217286300000000i -0.00978114700000000 - 0.00945618900000000i -0.0148352600000000 - 0.000389481900000000i -0.000796778800000000 + 0.00550517500000000i 0.000363058700000000 + 0.00980390000000000i -0.0170004400000000 - 0.00914350200000000i 0.0279068600000000 - 0.0123016200000000i 0.0312076100000000 + 0.0349013100000000i 0.0263827800000000 - 0.0135507400000000i -0.0110450600000000 - 0.00729945600000000i
0.000238898300000000 - 6.03695500000000e-05i -0.000177679600000000 + 0.000566240100000000i -0.000418705800000000 + 0.000137073700000000i -0.000344051000000000 - 0.000147350500000000i -0.000320069700000000 + 0.000312934800000000i -0.00114519000000000 + 0.000548104400000000i -0.000328681600000000 + 0.000166187200000000i -0.000150577300000000 - 0.00111038800000000i 0.00103098500000000 - 0.000372366900000000i 0.000928817000000000 + 0.000460246000000000i 0.000466210700000000 - 0.000104898600000000i 0.00187002000000000 - 0.00112579400000000i 0.000537569100000000 - 0.000408698200000000i 0.00115237300000000 + 0.00153898700000000i -0.00207082200000000 + 0.00147135600000000i -0.00256116500000000 - 0.00112984800000000i -0.000907020100000000 - 0.00104695000000000i -0.00287008900000000 + 0.00222293300000000i -0.000470559300000000 + 0.00176526300000000i -0.00327667800000000 - 0.00135718500000000i 0.00277550000000000 - 0.00422969400000000i 0.00656672800000000 + 0.00161541200000000i 0.00290813700000000 + 0.00495067600000000i 0.00378506300000000 - 0.00373320900000000i -0.00312848000000000 - 0.00227864500000000i 0.00643138000000000 - 0.00342413800000000i -4.18444900000000e-05 + 0.0106398100000000i -0.0147119100000000 - 0.000805463000000000i -0.0107990000000000 - 0.0139252400000000i -0.00540367900000000 + 0.00334122700000000i 0.00348018600000000 - 0.00359870100000000i 0.00182608900000000 + 0.0112494300000000i -0.0170982400000000 - 0.00918238700000000i 0.0266571700000000 - 0.0132194300000000i 0.0359920500000000 + 0.0360786700000000i 0.0134003600000000 - 0.00652971100000000i
-6.61672600000000e-05 - 9.68474800000000e-05i 0.000320966600000000 - 4.29206300000000e-05i 0.000286420100000000 + 0.000351489800000000i -0.000305672800000000 + 0.000833353200000000i -0.00127990600000000 + 0.000462142800000000i -0.00168246800000000 - 0.000902833000000000i 5.64845600000000e-05 + 0.000144394300000000i -0.000459317100000000 + 0.000212582800000000i -0.000465261700000000 - 0.000504215000000000i 0.000298324500000000 - 0.00133810000000000i 0.00220317500000000 - 0.000982617600000000i 0.00342615000000000 + 0.00147129800000000i -0.000299496000000000 - 0.000380440200000000i 0.000657606300000000 - 0.000627474200000000i 0.000849568000000000 + 0.000823129900000000i -0.000317678700000000 + 0.00194361000000000i -0.00356121800000000 + 0.00197826100000000i -0.00706654300000000 - 0.00223044700000000i 0.00120372600000000 - 0.000258578600000000i -0.000255293700000000 + 0.00210247800000000i -0.00240516700000000 - 0.00123016300000000i 0.000750501400000000 - 0.00298708500000000i 0.00526405600000000 - 0.00338770100000000i 0.0140587900000000 + 0.00290778700000000i 0.000221277600000000 + 0.00200500300000000i -0.00355299800000000 - 0.00201897400000000i 0.00584908300000000 - 0.00268720600000000i 0.000105935500000000 + 0.00763009100000000i -0.00879898500000000 + 0.00352279600000000i -0.0260008900000000 - 0.00317000800000000i -0.00207235800000000 + 0.000402854500000000i 0.00309560200000000 - 0.00391279900000000i 0.00136884400000000 + 0.0103351700000000i -0.0139886500000000 - 0.00753424500000000i 0.0178280300000000 - 0.0103650900000000i 0.0460391800000000 + 0.0115348100000000i
0.000748899100000000 + 0.000489045000000000i 0.000692160400000000 - 0.000193102700000000i 0.000241657700000000 - 0.000452715600000000i -0.000166007100000000 - 0.000258099500000000i -0.000192663400000000 - 2.15414700000000e-05i 2.65851700000000e-05 + 9.11210300000000e-05i -0.00158001400000000 - 0.000856170500000000i -0.00124149200000000 + 0.000418743700000000i -0.000303176400000000 + 0.000817191400000000i 0.000282772000000000 + 0.000347179800000000i 0.000310253200000000 - 3.68375100000000e-05i -4.92766500000000e-05 - 9.95021700000000e-05i 0.00338407000000000 + 0.00144712900000000i 0.00217321500000000 - 0.000954654300000000i 0.000313337700000000 - 0.00132462300000000i -0.000455900800000000 - 0.000518591900000000i -0.000456814600000000 + 0.000211476100000000i 4.41679600000000e-05 + 0.000144987700000000i -0.00706931300000000 - 0.00218016800000000i -0.00353489700000000 + 0.00201545800000000i -0.000303421100000000 + 0.00196058200000000i 0.000850140100000000 + 0.000832856200000000i 0.000660782300000000 - 0.000626172200000000i -0.000292127800000000 - 0.000381990000000000i 0.0140805000000000 + 0.00276443000000000i 0.00524363300000000 - 0.00344237200000000i 0.000741944900000000 - 0.00305156800000000i -0.00243104000000000 - 0.00124829200000000i -0.000251475800000000 + 0.00209555000000000i 0.00118446700000000 - 0.000262704200000000i -0.0261439600000000 - 0.00291958600000000i -0.00881138500000000 + 0.00370446100000000i 0.000149773800000000 + 0.00775801000000000i 0.00586629700000000 - 0.00267553600000000i -0.00357549000000000 - 0.00199228400000000i 0.000246787900000000 + 0.00199673100000000i
0.000633037900000000 - 0.000231310400000000i 0.000231097200000000 - 0.000237925200000000i 0.000100587600000000 - 1.37265100000000e-05i 0.000165698200000000 - 7.73232200000000e-05i 0.000162724300000000 - 0.000212338500000000i -0.000152132300000000 + 3.79670800000000e-07i -0.00108891100000000 + 0.000497133400000000i -0.000332693500000000 + 0.000296761100000000i -0.000318447600000000 - 0.000125815400000000i -0.000409678400000000 + 0.000126712600000000i -0.000164102800000000 + 0.000535371100000000i 0.000229826600000000 - 4.10691100000000e-05i 0.00185887100000000 - 0.00109171400000000i 0.000476601700000000 - 8.08022700000000e-05i 0.000943093200000000 + 0.000447262700000000i 0.00102433900000000 - 0.000367377200000000i -0.000167667900000000 - 0.00109044100000000i -0.000323482300000000 + 0.000151194900000000i -0.00287980300000000 + 0.00220541100000000i -0.000926890000000000 - 0.00104202500000000i -0.00259762400000000 - 0.00110728800000000i -0.00205983200000000 + 0.00148151000000000i 0.00117174700000000 + 0.00152448000000000i 0.000533421500000000 - 0.000400598800000000i 0.00379619400000000 - 0.00372301900000000i 0.00296455600000000 + 0.00491114700000000i 0.00659724100000000 + 0.00157264300000000i 0.00277092300000000 - 0.00425345400000000i -0.00327425300000000 - 0.00133154600000000i -0.000460762100000000 + 0.00174617200000000i -0.00548320000000000 + 0.00336509700000000i -0.0109106500000000 - 0.0138372900000000i -0.0147805100000000 - 0.000698324600000000i 9.69849100000000e-06 + 0.0106330200000000i 0.00641412500000000 - 0.00348180400000000i -0.00310920900000000 - 0.00224208900000000i
0.000186248700000000 - 0.000420791700000000i 0.000112948000000000 - 1.50199900000000e-05i 0.000275856300000000 + 4.46588300000000e-05i 0.000386784200000000 - 7.36031900000000e-05i 0.000175639000000000 - 8.24173000000000e-05i -0.000174191600000000 - 0.000213885100000000i -0.000211336700000000 + 0.000716136000000000i -0.000349501100000000 - 0.000121529400000000i -0.000600319500000000 - 0.000186620600000000i -0.000680843600000000 + 0.000206529800000000i -0.000409938900000000 + 0.000148032400000000i 0.000269016400000000 + 0.000256237600000000i 0.000140916800000000 - 0.00111680600000000i 0.000989118900000000 + 0.000439361800000000i 0.00143068500000000 + 0.000471895400000000i 0.00102304000000000 - 0.000313390400000000i 0.00102580100000000 - 0.000407016000000000i -0.000381387600000000 - 0.000337110700000000i -2.90042500000000e-05 + 0.00149756000000000i -0.00267977500000000 - 0.00110246300000000i -0.00293112700000000 - 0.000723142000000000i -0.00185045400000000 - 0.000301752800000000i -0.00204644900000000 + 0.00156527400000000i 0.000569779200000000 + 0.000543179200000000i 0.000444728600000000 - 0.00184924300000000i 0.00673334400000000 + 0.00148585500000000i 0.00492418600000000 + 0.00232869900000000i 0.00517646900000000 + 0.00171333000000000i 0.00265987800000000 - 0.00435524400000000i -0.00164111600000000 - 0.00118733200000000i -0.000864295800000000 + 0.00553078500000000i -0.0147911900000000 - 0.000407166600000000i -0.00977686600000000 - 0.00948775500000000i -0.0141242400000000 - 0.00219642100000000i 0.000116785500000000 + 0.0106039300000000i 0.00528170200000000 - 0.00157717400000000i
-0.000173184600000000 - 0.000213311900000000i 0.000175598800000000 - 8.22250100000000e-05i 0.000387221100000000 - 7.31813900000000e-05i 0.000276461500000000 + 4.33495800000000e-05i 0.000112891300000000 - 1.49678100000000e-05i 0.000186076500000000 - 0.000423929100000000i 0.000266847300000000 + 0.000255735100000000i -0.000410837900000000 + 0.000145544900000000i -0.000682608200000000 + 0.000206999500000000i -0.000600288500000000 - 0.000185365900000000i -0.000351715100000000 - 0.000119371400000000i -0.000209949000000000 + 0.000720892900000000i -0.000382116300000000 - 0.000335149000000000i 0.00102965300000000 - 0.000406279000000000i 0.00102715200000000 - 0.000310331400000000i 0.00142862800000000 + 0.000465133600000000i 0.000993212400000000 + 0.000436730600000000i 0.000143157000000000 - 0.00112043800000000i 0.000564999000000000 + 0.000543737700000000i -0.00204786800000000 + 0.00157243300000000i -0.00185616800000000 - 0.000293416500000000i -0.00293600900000000 - 0.000740058600000000i -0.00268423500000000 - 0.00110202700000000i -2.57724700000000e-05 + 0.00150618000000000i -0.00162365700000000 - 0.00119243600000000i 0.00265259000000000 - 0.00432854100000000i 0.00519668200000000 + 0.00170772600000000i 0.00493027000000000 + 0.00233480600000000i 0.00677609100000000 + 0.00148396000000000i 0.000438004500000000 - 0.00188555600000000i 0.00527011000000000 - 0.00162435300000000i 0.000110125800000000 + 0.0105602100000000i -0.0141531800000000 - 0.00226254100000000i -0.00981826800000000 - 0.00943996300000000i -0.0148894500000000 - 0.000359396900000000i -0.000880931900000000 + 0.00554083800000000i
-0.000152092600000000 + 1.11141100000000e-06i 0.000161162600000000 - 0.000211221400000000i 0.000164606200000000 - 7.84027700000000e-05i 9.86749900000000e-05 - 1.48674400000000e-05i 0.000228471100000000 - 0.000238012600000000i 0.000631188900000000 - 0.000232614500000000i 0.000228997400000000 - 4.22976200000000e-05i -0.000165722900000000 + 0.000532750900000000i -0.000406743500000000 + 0.000128417700000000i -0.000314720200000000 - 0.000122277200000000i -0.000327723400000000 + 0.000299580000000000i -0.00108431500000000 + 0.000498851500000000i -0.000323686600000000 + 0.000153180300000000i -0.000163886500000000 - 0.00109070600000000i 0.00102085400000000 - 0.000365976200000000i 0.000931355300000000 + 0.000435359200000000i 0.000471914700000000 - 8.64996000000000e-05i 0.00185011600000000 - 0.00108575500000000i 0.000538553500000000 - 0.000400424500000000i 0.00117460700000000 + 0.00153169100000000i -0.00204151600000000 + 0.00148429300000000i -0.00257684200000000 - 0.00110871400000000i -0.000911780500000000 - 0.00103001500000000i -0.00286902600000000 + 0.00220492300000000i -0.000475233400000000 + 0.00174149300000000i -0.00325929200000000 - 0.00134769800000000i 0.00276211300000000 - 0.00426455200000000i 0.00654942300000000 + 0.00156377800000000i 0.00294255000000000 + 0.00489512200000000i 0.00379390200000000 - 0.00374149700000000i -0.00311248100000000 - 0.00225055700000000i 0.00642371300000000 - 0.00342715200000000i -2.68119900000000e-05 + 0.0106620100000000i -0.0147106500000000 - 0.000660556600000000i -0.0108463100000000 - 0.0137439100000000i -0.00542041500000000 + 0.00328393700000000i
2.66953500000000e-05 + 9.03173400000000e-05i -0.000190824200000000 - 2.10557300000000e-05i -0.000164309800000000 - 0.000256488900000000i 0.000239320100000000 - 0.000449098800000000i 0.000690112400000000 - 0.000191652700000000i 0.000748900300000000 + 0.000489956500000000i -4.96727400000000e-05 - 9.78175200000000e-05i 0.000308308500000000 - 3.59081200000000e-05i 0.000281123400000000 + 0.000344957100000000i -0.000302349200000000 + 0.000809823900000000i -0.00123612400000000 + 0.000421316300000000i -0.00157805500000000 - 0.000856871100000000i 4.45042400000000e-05 + 0.000142679600000000i -0.000454257200000000 + 0.000209933400000000i -0.000453156800000000 - 0.000514850400000000i 0.000310486200000000 - 0.00130850100000000i 0.00217024200000000 - 0.000950868200000000i 0.00336589600000000 + 0.00145048700000000i -0.000289526900000000 - 0.000383334200000000i 0.000657934100000000 - 0.000625428200000000i 0.000844676000000000 + 0.000818953300000000i -0.000310876300000000 + 0.00194448600000000i -0.00353025300000000 + 0.00199114700000000i -0.00704171200000000 - 0.00218801700000000i 0.00118399500000000 - 0.000257582000000000i -0.000258838000000000 + 0.00207993200000000i -0.00241837600000000 - 0.00123716100000000i 0.000733458900000000 - 0.00300630000000000i 0.00526246700000000 - 0.00342755000000000i 0.0140383900000000 + 0.00280075200000000i 0.000257670400000000 + 0.00199874300000000i -0.00356142700000000 - 0.00199259400000000i 0.00586985600000000 - 0.00267454400000000i 0.000133502100000000 + 0.00769972800000000i -0.00875709200000000 + 0.00362364800000000i -0.0259245700000000 - 0.00295098100000000i ];

Here is Hm2, sorry it’s big

Hm2 = [-0.000328112800000000 - 0.000251825600000000i -0.000367351800000000 + 6.76933600000000e-05i -0.000160270100000000 + 0.000233507100000000i 7.58920800000000e-05 + 0.000179310500000000i 0.000111397700000000 + 3.60247100000000e-05i 4.81699900000000e-06 - 6.94855000000000e-05i 0.000707913300000000 + 0.000477140400000000i 0.000677228000000000 - 0.000166038900000000i 0.000245912200000000 - 0.000442530000000000i -0.000156922500000000 - 0.000258789600000000i -0.000186333200000000 - 2.68559000000000e-05i 1.28060800000000e-05 + 8.99109100000000e-05i -0.00157000400000000 - 0.000871183200000000i -0.00124190400000000 + 0.000399124200000000i -0.000327298600000000 + 0.000811255700000000i 0.000269219700000000 + 0.000362480900000000i 0.000310641800000000 - 2.85512600000000e-05i -3.53774700000000e-05 - 9.82690800000000e-05i 0.00339547100000000 + 0.00148218500000000i 0.00220367500000000 - 0.000957451700000000i 0.000331255900000000 - 0.00133647800000000i -0.000444338900000000 - 0.000542746500000000i -0.000465477800000000 + 0.000198278000000000i 2.81578900000000e-05 + 0.000148878100000000i -0.00712369400000000 - 0.00222893900000000i -0.00360163400000000 + 0.00200174400000000i -0.000361371000000000 + 0.00200505600000000i 0.000845455500000000 + 0.000877100800000000i 0.000679925700000000 - 0.000608342800000000i -0.000269385800000000 - 0.000396860300000000i 0.0142647100000000 + 0.00288892700000000i 0.00540926100000000 - 0.00348586400000000i 0.000831562400000000 - 0.00313278200000000i -0.00244468300000000 - 0.00133651600000000i -0.000294608900000000 + 0.00207906300000000i 0.00116605000000000 - 0.000230981700000000i
-0.000340136800000000 + 8.61853500000000e-05i -0.000148443100000000 + 0.000145244000000000i -3.29273700000000e-05 + 6.56264100000000e-05i -6.53317200000000e-05 + 5.00467600000000e-05i -8.70782600000000e-05 + 6.28077100000000e-05i 9.45290800000000e-05 + 2.10959900000000e-05i 0.000609007900000000 - 0.000208511900000000i 0.000238309000000000 - 0.000227256000000000i 9.60325300000000e-05 - 2.68255100000000e-05i 0.000163356000000000 - 7.28842700000000e-05i 0.000149529100000000 - 0.000201800900000000i -0.000146244400000000 - 1.22626200000000e-05i -0.00109610400000000 + 0.000479923500000000i -0.000343939500000000 + 0.000291081500000000i -0.000332530000000000 - 0.000115308200000000i -0.000409277100000000 + 0.000127523000000000i -0.000159543400000000 + 0.000532697800000000i 0.000231275300000000 - 2.64555100000000e-05i 0.00189260200000000 - 0.00107624000000000i 0.000499752500000000 - 9.66542400000000e-05i 0.000959194200000000 + 0.000427850400000000i 0.00103208000000000 - 0.000373562800000000i -0.000164838600000000 - 0.00110079600000000i -0.000335089000000000 + 0.000134435300000000i -0.00294666900000000 + 0.00220892800000000i -0.000967318100000000 - 0.00101181300000000i -0.00261756600000000 - 0.00109719700000000i -0.00208138700000000 + 0.00149978100000000i 0.00115865200000000 + 0.00155198900000000i 0.000564574500000000 - 0.000372104300000000i 0.00396447700000000 - 0.00377938500000000i 0.00303259600000000 + 0.00487382400000000i 0.00665069700000000 + 0.00155827900000000i 0.00283027100000000 - 0.00429326000000000i -0.00325182000000000 - 0.00141318400000000i -0.000535525700000000 + 0.00170541300000000i
-0.000131052600000000 + 0.000223275800000000i -3.98975600000000e-05 + 6.68017800000000e-05i -0.000123808600000000 + 1.90871600000000e-06i -0.000183237300000000 + 1.37499800000000e-05i -7.06407700000000e-05 + 5.33486600000000e-05i 8.20810000000000e-05 + 0.000157288600000000i 0.000190984100000000 - 0.000400166900000000i 0.000115203500000000 - 2.89782200000000e-05i 0.000262552000000000 + 4.09692100000000e-05i 0.000372537900000000 - 6.44655400000000e-05i 0.000164772200000000 - 8.75355300000000e-05i -0.000156011800000000 - 0.000213583100000000i -0.000226704800000000 + 0.000718943700000000i -0.000363530700000000 - 0.000108718800000000i -0.000601644300000000 - 0.000183343900000000i -0.000674482100000000 + 0.000201745000000000i -0.000411594200000000 + 0.000153305400000000i 0.000254871400000000 + 0.000270750400000000i 0.000171678700000000 - 0.00114121700000000i 0.00101088400000000 + 0.000412383000000000i 0.00144476000000000 + 0.000448722300000000i 0.00103223100000000 - 0.000318113100000000i 0.00103297800000000 - 0.000420035900000000i -0.000374656800000000 - 0.000366926600000000i -7.41413000000000e-05 + 0.00155363900000000i -0.00270281300000000 - 0.00106080800000000i -0.00297441500000000 - 0.000712454500000000i -0.00188794100000000 - 0.000283596400000000i -0.00206163500000000 + 0.00159100000000000i 0.000566987800000000 + 0.000600448600000000i 0.000512804400000000 - 0.00199001100000000i 0.00682541600000000 + 0.00141846000000000i 0.00501404900000000 + 0.00230402800000000i 0.00527176400000000 + 0.00166948600000000i 0.00270785100000000 - 0.00440804200000000i -0.00163699000000000 - 0.00129580900000000i
8.01950000000000e-05 + 0.000157540400000000i -7.13544300000000e-05 + 5.32268300000000e-05i -0.000183837000000000 + 1.29079300000000e-05i -0.000124298400000000 + 1.87398300000000e-06i -4.02501400000000e-05 + 6.67011400000000e-05i -0.000132565500000000 + 0.000224421200000000i -0.000152588300000000 - 0.000214347000000000i 0.000166717000000000 - 8.61644300000000e-05i 0.000374378000000000 - 6.30923300000000e-05i 0.000262657200000000 + 4.17668800000000e-05i 0.000116167000000000 - 2.91596400000000e-05i 0.000193057200000000 - 0.000401939000000000i 0.000252042400000000 + 0.000272187200000000i -0.000416319000000000 + 0.000151849700000000i -0.000679213500000000 + 0.000197121700000000i -0.000600481900000000 - 0.000183791000000000i -0.000365344000000000 - 0.000109627700000000i -0.000232446800000000 + 0.000719632100000000i -0.000366844800000000 - 0.000370706100000000i 0.00104035700000000 - 0.000421138000000000i 0.00103554500000000 - 0.000314824500000000i 0.00144554600000000 + 0.000465678600000000i 0.00101249400000000 + 0.000418195900000000i 0.000178076300000000 - 0.00114576300000000i 0.000549330700000000 + 0.000605268400000000i -0.00206510400000000 + 0.00157992400000000i -0.00190245200000000 - 0.000297249100000000i -0.00297415000000000 - 0.000736587400000000i -0.00271721400000000 - 0.00107506100000000i -8.45471400000000e-05 + 0.00157077500000000i -0.00163400700000000 - 0.00129199100000000i 0.00272136400000000 - 0.00438660800000000i 0.00529483300000000 + 0.00172935000000000i 0.00502445000000000 + 0.00232576300000000i 0.00685463100000000 + 0.00143776600000000i 0.000541373900000000 - 0.00198502600000000i
9.45596200000000e-05 + 2.00720100000000e-05i -8.58246700000000e-05 + 6.25528900000000e-05i -6.46507100000000e-05 + 5.08540800000000e-05i -3.22683900000000e-05 + 6.65755500000000e-05i -0.000147990800000000 + 0.000145934900000000i -0.000340588500000000 + 8.70376700000000e-05i -0.000145998100000000 - 1.06478700000000e-05i 0.000148649400000000 - 0.000200237700000000i 0.000161480000000000 - 7.44519900000000e-05i 9.52180000000000e-05 - 2.92614700000000e-05i 0.000237084100000000 - 0.000230118000000000i 0.000609270000000000 - 0.000209872500000000i 0.000231623500000000 - 2.93703200000000e-05i -0.000158266700000000 + 0.000531386000000000i -0.000406175400000000 + 0.000128454500000000i -0.000329399900000000 - 0.000107970400000000i -0.000344685000000000 + 0.000295789800000000i -0.00109566000000000 + 0.000478051000000000i -0.000337096500000000 + 0.000136898100000000i -0.000170888300000000 - 0.00110080200000000i 0.00102063300000000 - 0.000379801200000000i 0.000953116400000000 + 0.000422590300000000i 0.000500983700000000 - 0.000105127500000000i 0.00189545400000000 - 0.00107652000000000i 0.000565107800000000 - 0.000372755400000000i 0.00115930800000000 + 0.00154405600000000i -0.00206808100000000 + 0.00151070700000000i -0.00259997800000000 - 0.00108120400000000i -0.000973852200000000 - 0.000992398200000000i -0.00296362600000000 + 0.00221610900000000i -0.000524690300000000 + 0.00171688700000000i -0.00325158800000000 - 0.00140169100000000i 0.00282257400000000 - 0.00429853700000000i 0.00661973500000000 + 0.00151246400000000i 0.00304784700000000 + 0.00481437900000000i 0.00395897000000000 - 0.00374619500000000i
4.59237300000000e-06 - 6.94625300000000e-05i 0.000111367900000000 + 3.52301100000000e-05i 7.62976100000000e-05 + 0.000179348400000000i -0.000158484900000000 + 0.000233912500000000i -0.000367371200000000 + 6.86340000000000e-05i -0.000329469300000000 - 0.000252027900000000i 1.32951900000000e-05 + 8.95121600000000e-05i -0.000186232400000000 - 2.63755200000000e-05i -0.000158559600000000 - 0.000259207600000000i 0.000244040700000000 - 0.000442631300000000i 0.000676843300000000 - 0.000171235800000000i 0.000710065600000000 + 0.000476888000000000i -3.65883600000000e-05 - 9.80622700000000e-05i 0.000310138200000000 - 2.92308700000000e-05i 0.000272431800000000 + 0.000362793900000000i -0.000321962300000000 + 0.000809714800000000i -0.00124452700000000 + 0.000405309900000000i -0.00156846100000000 - 0.000870277100000000i 2.87495200000000e-05 + 0.000148243600000000i -0.000463825400000000 + 0.000200231500000000i -0.000450625600000000 - 0.000536931300000000i 0.000330950300000000 - 0.00134092700000000i 0.00220704800000000 - 0.000961421900000000i 0.00339822100000000 + 0.00148030900000000i -0.000266691100000000 - 0.000395169400000000i 0.000674175700000000 - 0.000602208000000000i 0.000849059100000000 + 0.000867825200000000i -0.000340516400000000 + 0.00200632200000000i -0.00362533200000000 + 0.00202790400000000i -0.00713547200000000 - 0.00223106500000000i 0.00116121600000000 - 0.000234503500000000i -0.000294660600000000 + 0.00205783100000000i -0.00243676200000000 - 0.00132912200000000i 0.000796347600000000 - 0.00313202500000000i 0.00539425200000000 - 0.00351996000000000i 0.0142350100000000 + 0.00285909600000000i
0.000151013500000000 + 0.000125884500000000i 0.000193987200000000 - 2.22186700000000e-05i 0.000100197200000000 - 0.000125792000000000i -3.00346700000000e-05 - 0.000118696800000000i -6.55312600000000e-05 - 3.40143100000000e-05i -1.97230200000000e-05 + 4.79732300000000e-05i -0.000325873800000000 - 0.000250099000000000i -0.000373202800000000 + 6.28629100000000e-05i -0.000166697800000000 + 0.000242127700000000i 7.45853900000000e-05 + 0.000189081800000000i 0.000113730600000000 + 3.94065200000000e-05i 1.54279800000000e-05 - 7.00556300000000e-05i 0.000738264000000000 + 0.000493956900000000i 0.000707699000000000 - 0.000173133500000000i 0.000266873700000000 - 0.000466831600000000i -0.000157640100000000 - 0.000284728900000000i -0.000195259600000000 - 3.31089300000000e-05i 6.95450900000000e-07 + 9.28778500000000e-05i -0.00165189400000000 - 0.000905740100000000i -0.00131814700000000 + 0.000436859300000000i -0.000348746400000000 + 0.000869858800000000i 0.000280970800000000 + 0.000405914300000000i 0.000327389700000000 - 1.80826700000000e-05i -2.16637500000000e-05 - 0.000107235000000000i 0.00358779000000000 + 0.00153521000000000i 0.00234925400000000 - 0.00102787400000000i 0.000381511900000000 - 0.00145209100000000i -0.000476205800000000 - 0.000611332600000000i -0.000490010800000000 + 0.000179210200000000i 1.14854700000000e-05 + 0.000164732600000000i -0.00756696300000000 - 0.00232856000000000i -0.00389312600000000 + 0.00218690700000000i -0.000425877600000000 + 0.00220843800000000i 0.000901177500000000 + 0.000980290800000000i 0.000722084400000000 - 0.000569411500000000i -0.000248313500000000 - 0.000418351500000000i
0.000181501000000000 - 2.91940400000000e-05i 9.38783300000000e-05 - 8.70321200000000e-05i 2.01163400000000e-05 - 6.85875100000000e-05i 2.48638900000000e-05 - 3.47026600000000e-05i 3.06420800000000e-05 - 1.33054600000000e-05i -5.83689100000000e-05 - 2.73550400000000e-05i -0.000342845200000000 + 7.97045000000000e-05i -0.000161390300000000 + 0.000148459200000000i -3.82376200000000e-05 + 7.99595700000000e-05i -6.59450100000000e-05 + 5.18346700000000e-05i -7.76300400000000e-05 + 6.27754800000000e-05i 9.55652900000000e-05 + 3.09149000000000e-05i 0.000644451100000000 - 0.000207732400000000i 0.000264224000000000 - 0.000242866000000000i 0.000114185500000000 - 4.69236800000000e-05i 0.000168869700000000 - 8.22834500000000e-05i 0.000147865800000000 - 0.000206955600000000i -0.000157935200000000 - 2.75396900000000e-05i -0.00117754200000000 + 0.000490307100000000i -0.000393251900000000 + 0.000333166900000000i -0.000358529100000000 - 8.18464700000000e-05i -0.000429058400000000 + 0.000147097200000000i -0.000168039500000000 + 0.000549977900000000i 0.000259352200000000 - 6.14760400000000e-06i 0.00205336100000000 - 0.00112074100000000i 0.000588972300000000 - 0.000166298600000000i 0.00101146000000000 + 0.000386496800000000i 0.00108199200000000 - 0.000413258200000000i -0.000140099000000000 - 0.00114476400000000i -0.000389697300000000 + 0.000105530100000000i -0.00327380300000000 + 0.00232901100000000i -0.00112016500000000 - 0.000900378700000000i -0.00274530600000000 - 0.00105114600000000i -0.00219675000000000 + 0.00157746400000000i 0.00111142700000000 + 0.00166678700000000i 0.000663098500000000 - 0.000332890500000000i
8.89305800000000e-05 - 0.000119692000000000i 2.45002400000000e-05 - 6.87442100000000e-05i 5.50206100000000e-05 - 1.44928600000000e-05i 7.71055200000000e-05 - 1.96441600000000e-06i 2.73096500000000e-05 - 3.79211900000000e-05i -3.18407000000000e-05 - 0.000108389000000000i -0.000143057400000000 + 0.000220604200000000i -5.00564500000000e-05 + 7.91734100000000e-05i -0.000121464600000000 + 8.31360400000000e-06i -0.000177978400000000 + 1.35085200000000e-05i -6.67445000000000e-05 + 6.36031500000000e-05i 7.17793600000000e-05 + 0.000167063100000000i 0.000220783500000000 - 0.000417852200000000i 0.000134989400000000 - 4.70614900000000e-05i 0.000274507400000000 + 3.20603400000000e-05i 0.000377510300000000 - 6.87961600000000e-05i 0.000168784300000000 - 0.000103446900000000i -0.000147507700000000 - 0.000243256400000000i -0.000283672600000000 + 0.000763925100000000i -0.000396190200000000 - 7.58917600000000e-05i -0.000633605900000000 - 0.000163576800000000i -0.000703522100000000 + 0.000214029800000000i -0.000422565700000000 + 0.000182698800000000i 0.000252793800000000 + 0.000328557000000000i 0.000266360700000000 - 0.00123606700000000i 0.00107102700000000 + 0.000367990000000000i 0.00151933100000000 + 0.000434613900000000i 0.00110707600000000 - 0.000346154300000000i 0.00106194600000000 - 0.000470668600000000i -0.000382678000000000 - 0.000470010800000000i -0.000233456400000000 + 0.00175056500000000i -0.00284984000000000 - 0.00100806300000000i -0.00314321000000000 - 0.000703509000000000i -0.00205016500000000 - 0.000218415800000000i -0.00214230000000000 + 0.00167911900000000i 0.000583849100000000 + 0.000772098900000000i
-3.12796300000000e-05 - 0.000108013800000000i 2.73770800000000e-05 - 3.77965600000000e-05i 7.70586000000000e-05 - 1.75378300000000e-06i 5.48846400000000e-05 - 1.46520600000000e-05i 2.42678000000000e-05 - 6.89660600000000e-05i 8.94071600000000e-05 - 0.000120439100000000i 7.06423300000000e-05 + 0.000166612500000000i -6.72778500000000e-05 + 6.28961200000000e-05i -0.000178204400000000 + 1.32219100000000e-05i -0.000120850200000000 + 8.50941000000000e-06i -4.94623500000000e-05 + 7.97530500000000e-05i -0.000143557000000000 + 0.000221812300000000i -0.000147301000000000 - 0.000242898400000000i 0.000170210200000000 - 0.000102711000000000i 0.000378684400000000 - 6.73100800000000e-05i 0.000272486700000000 + 3.09129900000000e-05i 0.000134455300000000 - 4.76617500000000e-05i 0.000222642300000000 - 0.000418511400000000i 0.000250696900000000 + 0.000327853600000000i -0.000424312300000000 + 0.000183727600000000i -0.000701658900000000 + 0.000215403800000000i -0.000630844100000000 - 0.000168203800000000i -0.000395292600000000 - 7.63032900000000e-05i -0.000285641000000000 + 0.000767307600000000i -0.000376476000000000 - 0.000467377700000000i 0.00106034100000000 - 0.000469243100000000i 0.00110756500000000 - 0.000345401200000000i 0.00151285000000000 + 0.000441015600000000i 0.00107396600000000 + 0.000367572300000000i 0.000271031100000000 - 0.00124711700000000i 0.000588953600000000 + 0.000769473300000000i -0.00214099600000000 + 0.00167641400000000i -0.00205116400000000 - 0.000236076200000000i -0.00313625500000000 - 0.000702353500000000i -0.00285669000000000 - 0.00100330300000000i -0.000241698100000000 + 0.00175136400000000i
-5.82910000000000e-05 - 2.73657400000000e-05i 3.04295600000000e-05 - 1.34844500000000e-05i 2.52427600000000e-05 - 3.50938100000000e-05i 2.05219800000000e-05 - 6.87546900000000e-05i 9.44423300000000e-05 - 8.68034300000000e-05i 0.000182346300000000 - 2.87489100000000e-05i 9.53759100000000e-05 + 3.09890900000000e-05i -7.77570100000000e-05 + 6.23882000000000e-05i -6.62791700000000e-05 + 5.26533700000000e-05i -3.92454100000000e-05 + 8.03544400000000e-05i -0.000162107500000000 + 0.000148912000000000i -0.000344091200000000 + 7.87247900000000e-05i -0.000158227500000000 - 2.72282100000000e-05i 0.000148630400000000 - 0.000206962300000000i 0.000169510700000000 - 8.27522400000000e-05i 0.000115414000000000 - 4.83269400000000e-05i 0.000267282500000000 - 0.000242995800000000i 0.000645877400000000 - 0.000203572300000000i 0.000259610100000000 - 5.06366400000000e-06i -0.000168036100000000 + 0.000551845800000000i -0.000427621700000000 + 0.000149378500000000i -0.000360867200000000 - 8.24648800000000e-05i -0.000399365600000000 + 0.000332008700000000i -0.00118238500000000 + 0.000483591400000000i -0.000388427300000000 + 0.000102071900000000i -0.000137297000000000 - 0.00114180500000000i 0.00108403600000000 - 0.000415951400000000i 0.00101188400000000 + 0.000386911100000000i 0.000601956200000000 - 0.000168250300000000i 0.00206845200000000 - 0.00110961700000000i 0.000664278400000000 - 0.000338819500000000i 0.00110751000000000 + 0.00166754100000000i -0.00221027200000000 + 0.00156837900000000i -0.00274371500000000 - 0.00104309100000000i -0.00114534200000000 - 0.000896048000000000i -0.00327883600000000 + 0.00228974900000000i
-1.97525200000000e-05 + 4.81223700000000e-05i -6.55885600000000e-05 - 3.37408300000000e-05i -3.01451400000000e-05 - 0.000118836300000000i 9.93023400000000e-05 - 0.000125972200000000i 0.000193830100000000 - 2.26045500000000e-05i 0.000151314600000000 + 0.000125704300000000i 1.53669000000000e-05 - 7.00870900000000e-05i 0.000113893900000000 + 3.95624300000000e-05i 7.52482400000000e-05 + 0.000189717900000000i -0.000165934300000000 + 0.000242078800000000i -0.000372916100000000 + 6.54291900000000e-05i -0.000326196900000000 - 0.000249566100000000i 9.99586300000000e-07 + 9.35855200000000e-05i -0.000195943700000000 - 3.33887600000000e-05i -0.000158844900000000 - 0.000286100800000000i 0.000264323700000000 - 0.000466059100000000i 0.000709160700000000 - 0.000175718600000000i 0.000736091200000000 + 0.000492602800000000i -2.17097900000000e-05 - 0.000108485600000000i 0.000329209800000000 - 1.91789100000000e-05i 0.000284487800000000 + 0.000405196700000000i -0.000351928400000000 + 0.000872240600000000i -0.00132058500000000 + 0.000437293600000000i -0.00164994000000000 - 0.000904160800000000i 1.11786800000000e-05 + 0.000165329800000000i -0.000490725000000000 + 0.000179400800000000i -0.000480917700000000 - 0.000611987600000000i 0.000376530700000000 - 0.00145612200000000i 0.00236695400000000 - 0.00103812500000000i 0.00358657400000000 + 0.00153672700000000i -0.000251224500000000 - 0.000418920500000000i 0.000720703500000000 - 0.000567404400000000i 0.000906144900000000 + 0.000982400300000000i -0.000416366600000000 + 0.00222233900000000i -0.00389608400000000 + 0.00220076600000000i -0.00754348900000000 - 0.00231589300000000i
-7.87289800000000e-05 - 6.87865700000000e-05i -0.000112060000000000 + 6.34908700000000e-06i -6.89350100000000e-05 + 7.38825200000000e-05i 7.04440300000000e-06 + 8.15442200000000e-05i 4.01848100000000e-05 + 3.02125900000000e-05i 2.76587700000000e-05 - 3.02911100000000e-05i 0.000170040200000000 + 0.000141223400000000i 0.000222842300000000 - 1.99393000000000e-05i 0.000120670000000000 - 0.000144062000000000i -2.61903700000000e-05 - 0.000139235400000000i -7.26211600000000e-05 - 4.21946300000000e-05i -3.35927700000000e-05 + 4.81968300000000e-05i -0.000383885000000000 - 0.000292920700000000i -0.000442066200000000 + 6.76024200000000e-05i -0.000209986800000000 + 0.000281537200000000i 7.10488800000000e-05 + 0.000230716300000000i 0.000127842200000000 + 5.43977900000000e-05i 3.47867300000000e-05 - 7.31859200000000e-05i 0.000873468200000000 + 0.000581805000000000i 0.000852508500000000 - 0.000199761900000000i 0.000335086800000000 - 0.000548664200000000i -0.000160458800000000 - 0.000355372400000000i -0.000219214300000000 - 5.91722600000000e-05i -2.56683700000000e-05 + 0.000102130500000000i -0.00195618600000000 - 0.00107175300000000i -0.00159218700000000 + 0.000496496100000000i -0.000477246300000000 + 0.00102188700000000i 0.000294250500000000 + 0.000517298600000000i 0.000366103300000000 + 2.88179300000000e-05i 1.46764600000000e-05 - 0.000123210900000000i 0.00426214500000000 + 0.00184474900000000i 0.00286874400000000 - 0.00118005000000000i 0.000586987400000000 - 0.00171995600000000i -0.000490593800000000 - 0.000779123200000000i -0.000564601500000000 + 9.29013100000000e-05i -4.27437000000000e-05 + 0.000185142600000000i
-0.000106332200000000 + 6.23980200000000e-06i -6.76462100000000e-05 + 5.38062800000000e-05i -2.45488500000000e-05 + 5.79193800000000e-05i -1.18239500000000e-05 + 2.96191900000000e-05i -2.37553000000000e-06 + 6.44744100000000e-06i 3.79175300000000e-05 + 2.92286300000000e-05i 0.000208555600000000 - 2.10588800000000e-05i 0.000122863500000000 - 9.43645500000000e-05i 3.90560900000000e-05 - 8.68487500000000e-05i 3.36979800000000e-05 - 4.70601500000000e-05i 2.70722600000000e-05 - 2.39465000000000e-05i -6.62035200000000e-05 - 4.06750900000000e-05i -0.000413669700000000 + 6.87216600000000e-05i -0.000218712600000000 + 0.000165875700000000i -7.80579400000000e-05 + 0.000108728600000000i -8.74217900000000e-05 + 7.80366300000000e-05i -8.30189100000000e-05 + 8.36413100000000e-05i 0.000115084600000000 + 5.36349500000000e-05i 0.000792240700000000 - 0.000193619000000000i 0.000373384400000000 - 0.000277960000000000i 0.000185272700000000 - 9.14139600000000e-05i 0.000218652900000000 - 0.000130117800000000i 0.000168260000000000 - 0.000251326400000000i -0.000195787400000000 - 6.08472800000000e-05i -0.00146882800000000 + 0.000479716100000000i -0.000597906300000000 + 0.000378434900000000i -0.000503148200000000 - 2.57770400000000e-05i -0.000536573800000000 + 0.000233655800000000i -0.000213339400000000 + 0.000646787700000000i 0.000325328300000000 + 4.08228000000000e-05i 0.00262471300000000 - 0.00112071700000000i 0.000970558100000000 - 0.000214045300000000i 0.00131800900000000 + 0.000337513100000000i 0.00130720900000000 - 0.000575164000000000i -6.45986600000000e-05 - 0.00135390300000000i -0.000495133900000000 + 4.43287300000000e-05i
-6.74548400000000e-05 + 7.09552300000000e-05i -2.68092400000000e-05 + 6.01905800000000e-05i -2.67923000000000e-05 + 2.05014100000000e-05i -2.97566200000000e-05 + 3.89954800000000e-06i -9.80197300000000e-06 + 2.98204100000000e-05i 6.32510100000000e-06 + 7.83714200000000e-05i 0.000117095700000000 - 0.000134273300000000i 4.47789400000000e-05 - 9.04274100000000e-05i 6.42282900000000e-05 - 2.62740900000000e-05i 8.11113600000000e-05 - 4.12691700000000e-06i 2.91552700000000e-05 - 5.03740400000000e-05i -2.27339700000000e-05 - 0.000131396100000000i -0.000202104100000000 + 0.000261395300000000i -8.67592400000000e-05 + 0.000116687100000000i -0.000150331800000000 + 2.50090600000000e-05i -0.000200365300000000 + 1.70356200000000e-05i -7.94709700000000e-05 + 8.23340900000000e-05i 6.31466100000000e-05 + 0.000217051000000000i 0.000331897000000000 - 0.000504399000000000i 0.000199743400000000 - 0.000110684800000000i 0.000338058900000000 + 8.20893900000000e-06i 0.000443604000000000 - 7.22441300000000e-05i 0.000201880900000000 - 0.000133570600000000i -0.000145852800000000 - 0.000334901500000000i -0.000479652000000000 + 0.000939721800000000i -0.000519724900000000 + 1.40992600000000e-05i -0.000773480200000000 - 0.000148101200000000i -0.000859025900000000 + 0.000219698600000000i -0.000506611500000000 + 0.000229637300000000i 0.000268564900000000 + 0.000485048700000000i 0.000606765600000000 - 0.00158582900000000i 0.00132764400000000 + 0.000259377300000000i 0.00182876500000000 + 0.000455372800000000i 0.00143876100000000 - 0.000357893500000000i 0.00126986800000000 - 0.000552679600000000i -0.000430655300000000 - 0.000718588300000000i
6.00020800000000e-06 + 7.81313000000000e-05i -9.82694300000000e-06 + 2.97464100000000e-05i -2.97535100000000e-05 + 3.79406100000000e-06i -2.68193900000000e-05 + 2.05283000000000e-05i -2.68372700000000e-05 + 6.02465600000000e-05i -6.77687700000000e-05 + 7.10866600000000e-05i -2.20944600000000e-05 - 0.000131138700000000i 2.95003800000000e-05 - 4.99033800000000e-05i 8.12294900000000e-05 - 3.89234500000000e-06i 6.41188000000000e-05 - 2.63937700000000e-05i 4.44370400000000e-05 - 9.07616700000000e-05i 0.000117463100000000 - 0.000134395000000000i 6.31658700000000e-05 + 0.000217132300000000i -8.02952400000000e-05 + 8.15827600000000e-05i -0.000201090200000000 + 1.58874000000000e-05i -0.000149443100000000 + 2.57562800000000e-05i -8.66163000000000e-05 + 0.000116996500000000i -0.000203288400000000 + 0.000260430300000000i -0.000145135100000000 - 0.000334790900000000i 0.000203069300000000 - 0.000133349600000000i 0.000442928500000000 - 7.30461300000000e-05i 0.000336825100000000 + 9.94042800000000e-06i 0.000199892000000000 - 0.000110122900000000i 0.000333959000000000 - 0.000503995900000000i 0.000266618600000000 + 0.000483064700000000i -0.000507775300000000 + 0.000227326100000000i -0.000860195700000000 + 0.000219672800000000i -0.000768677100000000 - 0.000151249300000000i -0.000521979000000000 + 1.48399200000000e-05i -0.000484997600000000 + 0.000941669700000000i -0.000435503300000000 - 0.000719435100000000i 0.00127311400000000 - 0.000548903700000000i 0.00144171200000000 - 0.000348640100000000i 0.00182024900000000 + 0.000455457500000000i 0.00133212000000000 + 0.000256577400000000i 0.000613553300000000 - 0.00157769100000000i
3.77816500000000e-05 + 2.93420100000000e-05i -2.43280300000000e-06 + 6.62281400000000e-06i -1.22318000000000e-05 + 2.97382700000000e-05i -2.48235600000000e-05 + 5.78318100000000e-05i -6.79270400000000e-05 + 5.35482100000000e-05i -0.000106752200000000 + 5.94175500000000e-06i -6.59551100000000e-05 - 4.09451000000000e-05i 2.73281100000000e-05 - 2.39163800000000e-05i 3.42783500000000e-05 - 4.74228800000000e-05i 3.97830600000000e-05 - 8.66401600000000e-05i 0.000123162100000000 - 9.44449500000000e-05i 0.000209096300000000 - 2.04000500000000e-05i 0.000115274000000000 + 5.37541000000000e-05i -8.38071200000000e-05 + 8.38408200000000e-05i -8.85821100000000e-05 + 7.82707200000000e-05i -7.89721500000000e-05 + 0.000108479000000000i -0.000220455100000000 + 0.000165244900000000i -0.000413871900000000 + 6.63161400000000e-05i -0.000195466500000000 - 6.16942000000000e-05i 0.000169122300000000 - 0.000252695600000000i 0.000218906300000000 - 0.000131317700000000i 0.000187904500000000 - 8.98519900000000e-05i 0.000377254500000000 - 0.000275291300000000i 0.000793563100000000 - 0.000189253300000000i 0.000323123800000000 + 4.25960400000000e-05i -0.000214832400000000 + 0.000645440600000000i -0.000539467900000000 + 0.000234900700000000i -0.000505196100000000 - 2.90267400000000e-05i -0.000607511400000000 + 0.000377541500000000i -0.00147437800000000 + 0.000471265600000000i -0.000497071100000000 + 4.67325400000000e-05i -6.05314000000000e-05 - 0.00135492300000000i 0.00131582900000000 - 0.000567585400000000i 0.00132126200000000 + 0.000336423400000000i 0.000986303900000000 - 0.000208661800000000i 0.00262020500000000 - 0.00109765400000000i
2.74074100000000e-05 - 3.02161800000000e-05i 4.01904900000000e-05 + 2.98382000000000e-05i 7.22620700000000e-06 + 8.13578600000000e-05i -6.81540500000000e-05 + 7.39303100000000e-05i -0.000111781400000000 + 6.59848700000000e-06i -7.88012500000000e-05 - 6.85852300000000e-05i -3.31559800000000e-05 + 4.78839600000000e-05i -7.24649300000000e-05 - 4.19498500000000e-05i -2.67555000000000e-05 - 0.000139125400000000i 0.000119665100000000 - 0.000143816700000000i 0.000222366200000000 - 2.15635200000000e-05i 0.000170045900000000 + 0.000140701600000000i 3.41767200000000e-05 - 7.31585400000000e-05i 0.000127680700000000 + 5.40891800000000e-05i 7.18491600000000e-05 + 0.000230551700000000i -0.000207111500000000 + 0.000280627800000000i -0.000442104900000000 + 6.93358500000000e-05i -0.000382458000000000 - 0.000291451800000000i -2.52482700000000e-05 + 0.000101844400000000i -0.000219463000000000 - 5.78254300000000e-05i -0.000163055100000000 - 0.000352567600000000i 0.000335189400000000 - 0.000548129400000000i 0.000851733900000000 - 0.000200334600000000i 0.000871695700000000 + 0.000579267300000000i 1.44498300000000e-05 - 0.000121704800000000i 0.000364433900000000 + 2.74587400000000e-05i 0.000296517500000000 + 0.000513970700000000i -0.000470228100000000 + 0.00102044000000000i -0.00159846400000000 + 0.000502574200000000i -0.00195317300000000 - 0.00106850300000000i -4.13507400000000e-05 + 0.000185457700000000i -0.000560317700000000 + 9.35874200000000e-05i -0.000490035500000000 - 0.000774654100000000i 0.000574030400000000 - 0.00171987200000000i 0.00285849200000000 - 0.00119076600000000i 0.00424581400000000 + 0.00182807000000000i]

I think the nominally non-zero optimal value of f is due to the terrible numerical scaling of the input data, which ends up in the model as small numbers multiplying other small numbers,which makes the LHS positive, but within solver tolerance of the RHS of 0.

You should change units or whatever so that the non-zero input data is within s small number of orders of magnitude of one. I don’t know how much this will help. Ultimately, you appear to have what may be a terrible model, whose only solution is the vector of zeros. So what is the point of the optimization problem? i don’t know anything about the application area, but unless the RHS of the modified version of (3b) is non-trivially greater than 0, it doesn’t seem like a good model.

Really thanks for your answer and patience. I get your point. Although the model seems reasonable for my application, it doesn’t seem to be a good model to be solved with bad scaling for the actual requirement. Btw, in your opinion, do you think the new constraint (1) (2) could help me with regulating value of \mathbf{f}^H\mathbf{f}? Or it just doesn’t seem to make sense maybe?

After a second thought, I think maybe it doesn’t make sense. Again, thank you!

A constraint
{convex quadratic with no linear or constant term} <= 0
doesn’t seem like a good constraint for an optimization model, for the reasons previously provided.

Yes, now I totally get it. Thanks again!