Filter löschen
Filter löschen

how to write milburn equation?

1 Ansicht (letzte 30 Tage)
reza hamzeh
reza hamzeh am 20 Dez. 2019
Kommentiert: reza hamzeh am 23 Dez. 2019
hi. i wanted to write milburn equation in matlab. but im not sure that i wrote it exactly. seems i made some mistakes because it didnt give me the correct answer.
this is the correct answer
1.jpg
and this is the milburn equation.
milburn.jpg
and this is the code that i wrote.(in my codes innerstate =p(0) and gamma=de)
clear;
syms x;
t=1;
de=50;
Haf=[x/2 0 0 0;0 -x/2 x 0;0 x -x/2 0;0 0 0 x/2];
innerstate=[1 1 0 0;1 1 1 1;1 1 1 0;1 0 1 0];
[vectors,values]=eig(Haf(x));
ro=zeros(size(innerstate,1));
for m=1:4
for n=1:4
ro=ro+exp(((-t/(2*de))*(values(n,n)-values(m,m))^2)-(1i*t)*(values(n,n)-values(m,m)))...
*((vectors(:,m)')*innerstate*vectors(:,n))*(vectors(:,m)*(vectors(:,n)'));
end
end
  2 Kommentare
David Goodmanson
David Goodmanson am 23 Dez. 2019
Bearbeitet: David Goodmanson am 23 Dez. 2019
Hi reza,
Is Haf the same as the H in the problem definition? And in the same basis used to express Haf, could you check that innerstate is as below? If all that is correct, then something seems to be wrong, as far as getting the proposed answer.
The most obvious indication is that the trace of rho(t) has to equal the trace of rho(0). This is true because the exponential factor = 1 whenever n=m. However, the trace of the proposed answer is 8, and the trace of innerstate is 3.
innerstate =
1 1 0 0
1 1 1 1
1 1 1 0
1 0 1 0
reza hamzeh
reza hamzeh am 23 Dez. 2019
hi. thank u. the problem is solved.

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Mathematics finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by