Hello everyone, I am trying to create a tensor with a function that should take the indexes as values to produce a specific result for every element for the tensor.
I was able to define it using CartesianIndexes, a function and a map for the case of a simple matrix as listed below :
# fourier transform of call option
function vstate(z, eta, alpha, strike_price)
z = - eta .* z .- im *alpha
return -strike_price^(1 + im * sum(z))/((-1)^length(z) * prod(im .* z) .*(1 + im * sum(z)))
end
alpha = 2.5
eta = 0.5
strike_price = 100
#create the matrix
callp = map(x -> vstate(x.I, -eta, -alpha, strike_price),
CartesianIndices((-25:25, -25:25)))
Is it possible to do this in Itensors? And do you perhaps know, in case the first response is positive, how to produce an MPS of it? Thank you.