Steven Murray
Steven Murray
Not sure this is related to #57, as I have setup a specific PAT for it.
Ah, you're right. Returning `None` for each of the blobs works both with and without setting `blobs_dtype`, and that is easy to do (even dynamically). However, one strange case: setting...
Sure! ```python import emcee import numpy as np def log_prob(p): mu, sig = p if not 0 < mu < 1: ll = -np.inf return -np.inf, 0,0,0 ll = np.sum(-(data...
In the meantime, is there a way to turn off darglint checks for all properties? I don't want to manually `# noqa` each one, nor turn off darglint entirely...
This will require #27 to be merged
Hi there, Would love to figure out how to get ``hankel`` to do what you need it to do. It currently just does the 1D Hankel transform -- which covers...
Hmmm, so is a 2D FT required, or a 1D FT over each row?
Okay cool. Well, ``hankel`` doesn't do a discrete transform as its primary goal (not in the same way that say a DFT is a discrete transform which can be written...
I have been thinking about implementing some discrete HT functions in ``hankel``, so they might appear soon. I should clarify my last comment -- ``hankel`` *will* do a discrete transform...
I reckon it could be vectorized -- the call to ``rfft()`` admits an ``axis`` parameter, so all rows can be done in one call. Otherwise, it's all looking very good....