Replies: 1 comment 4 replies
-
Converting to a discussion as this does not document a bug. Here's a way you could do it for a 64-length signal with a batch size of 5: import torchkbnufft as tkbn
import torch
signal = torch.randn(5, 1, 64) + 1j * torch.randn(5, 1, 64)
omega = (torch.rand(1, 55) - 0.5) * 2 * torch.pi # in radians/sample
nufft_ob = tkbn.KbNufft(im_size=(64,))
frequency_estimates = nufft_ob(signal, omega) |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, i have several 1D time series data that is non-uniformly sampled. How would i apply this case in your package? Thank you very much for the help in advance :)
Beta Was this translation helpful? Give feedback.
All reactions