Is your feature request related to a problem?
When using interRDF, sometimes I am interested in $N_{ab}$ and sometimes in $G_{ab}$.
At this moment I have to calculate the rdf 2 times, to get both values or the density $rho$, which is really inefficient.
rdf_AB = rdf.InterRDF(g1, g2, nbins=n_bins, range=(ra, rb), norm="rdf",)
rdf_AB_den = rdf.InterRDF(g1, g2, nbins=n_bins, range=(ra, rb), norm="density")
$N_{ab}(r) = \rho G_{ab}(r) $
Describe the solution you'd like
I'd like to be able to return the used $rho$ as a scalar value and just convert the values in an easy way.
Is your feature request related to a problem?
When using interRDF, sometimes I am interested in$N_{ab}$ and sometimes in $G_{ab}$ .$rho$ , which is really inefficient.
At this moment I have to calculate the rdf 2 times, to get both values or the density
Describe the solution you'd like
I'd like to be able to return the used$rho$ as a scalar value and just convert the values in an easy way.