Introduced the Plotting module to create figures in Aleph for data analysis, including bar, line, scatter, and heatmap plots.
Supports legends, multiple series, multiple plots in the same figure, and a ton of customization options.
Functions for the computation of matrix elements and expectation values with MPS and MPO.
matrix_element(bra,operator,ket) to compute the matrix element ⟨ϕ∣O∣ψ⟩ of an operator.
expval(operator,ket) to compute the expected value ⟨ψ∣O∣ψ⟩ of the operator.
Added accumulators for binning analysis of time series and markov chain data. Currently support accumulator("no_binning")
and accumulator("binning"). The bin size can be set via accumulator("binning" ["bin_size" : 1024 ]).
Added a FourBody symbolic fermionic operator: ci†cj†ckcl. An operator can be created via
FourBody(i,j,k,l) where i,j,k,l are the sites where the operator acts.