I created an MPS by
f_mps = MPS(psi, sites_full; cutoff=tol_mps, maxdim=chi_mps), and I’m wondering how to implement f_mps + a constant element wisely.
If I do f_mps + 64, it output errors as “MethodError: no method matching +(::MPS, ::Float64)
The function + exists, but no method is defined for this combination of argument types.”.
It is not clear what you really want to do. Do you want to add 64 to each ITensor of the MPS? or do you want to add it to each element of the ITensor ? But in both cases I can’t see why you’d want/have to do that. Please explain better what is your aim
Thank you for your response. I have an MPS and aim to add 64 to each element of its full tensor. This operation is necessary for applying tensor network algorithms to solve a partial differential equation.
If I’ve interpreted right the question, you could write a function similar to this
function add constant(psi::MPS, c::Float64)
phi =similar(psi)
for i in 1:length(psi)
setstorage!(phi[i],storage(psi[i]) .+ c)
end
return phi
end
This function would return an MPS where the constant c is added to each element of each Tensor of the starting MPS. Note that the state on exit is not normalized
But I do want to emphasize Ryan’s good point about adding such an elementwise constant being very dependent on what basis the MPS tensors are in. More specifically, MPS tensors are only well defined up to “gauge transformations” on the bonds and unless you are very clear about what gauge an MPS is in, adding numbers to the entries of the tensors may not give “gauge invariant” results i.e. you could essentially get sort of random results each time you run your program!