Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要对两个向量进行反卷积。这相当于多项式除法。例如,在 Matlab 中我会使用deconv函数。R中是否有类似/等效的功能?
deconv包装内有pracma
deconv
pracma
c = c(10, 40, 100, 160, 170, 120) u = c(1, 2, 3, 4) #install.packages("pracma") library(pracma) deconv(c, u) #$q #[1] 10 20 30 #$r #[1] 0 0 0