You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When multiplying multiple TimeDependentOperators I can only combine a dagger version with a non-dagger version. See the following:
kappa(t) =1
b =FockBasis(3)
a =destroy(b)
a_td =TimeDependentSum(kappa=>a)
dagger(a_td)*a_td #Works
a_td*a_td #Does not workdagger(a_td)*dagger(a_td) #Does not workdagger(a_td)*a_td*a_td #Does Workdagger(a_td)*dagger(a_td)*a_td*a_td #Does not work
The text was updated successfully, but these errors were encountered:
When multiplying multiple TimeDependentOperators I can only combine a dagger version with a non-dagger version. See the following:
The text was updated successfully, but these errors were encountered: