HazeDT / WaveletKernelNet

This is the code for WaveletKernelNet.
99 stars 28 forks source link

关于拉普拉斯变换 #1

Closed liguge closed 2 years ago

liguge commented 3 years ago

拉普拉斯变换代码line42 是不是应该加上()?

p1 = (time_disc.cuda() - self.b_.cuda()) / self.a_.cuda()

liguge commented 3 years ago

另外,作者您好 我查阅一下拉普拉斯小波的公式

y = A * torch.exp((-ep / (torch.sqrt(q))) * (w * (p - tal))) * (-torch.sin(w * (p - tal)))

是不是应该改为

y = A * torch.exp((-ep / (torch.sqrt(q))) * (w * (p - tal))) * (torch.sin(w * (p - tal))) 为什么要加-呢?这个我不太理解。