REVIEW 2 major objections 4 minor 1 cited by
Uncovering the Spectral Bias in Diagonal State Space Models
T0 review · 2 major / 4 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read Diagonal state-space models initialized directly in the discrete Fourier domain achieve uniform, alias-free spectral coverage independent of the discretization step, enabling from-scratch training on PathX-256.
desk verdict A genuinely useful discrete-domain pole initialization for diagonal SSMs, with a clean motivation and a strong PathX-256 result, but the universal-approximator claim and one proof step need fixing before the framing is trustworthy. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is S4D-DFouT, an initialization for diagonal state-space models that fixes the discrete-time eigenvalues directly as $\lambda_n = \exp(-\xi n/2 + i 2\pi n/N)$ for $n = 0,\dots,N-1$, with $\xi$ a learnable damping factor. A layer of $H$ parallel SSMs is synchronized by assigning each machine a phase offset $\phi_h = 2\pi(h-1)/(NH)$, so the union of poles forms a uniform grid of $NH$ frequencies on $[0,2\pi)$. That grid is what does the work: it decouples decay from frequency selection, removes the discretization step $\Delta$ from the spectral-coverage question, and eliminates aliasing as long as every mode stays within its Nyquist band. In the $\xi = 0$ limit the state transition is unitary and the model reduces to a DFT basis, capable of representing any circular convolution kernel of length $N$; a half-plane variant for real inputs keeps only $N/2+1$ poles, halving the state dimension.
What would settle it
Train S4D-DFouT on a sequence-classification task constructed so the class label depends on the amplitude or phase of a single sinusoid whose frequency is deliberately off the N-point uniform grid (e.g., a repeating period of N+1). If the model still solves it, the universal-coverage claim would outrun the paper's circular-convolution argument; if it fails, the fixed-grid assumption is the load-bearing limitation.
Extended reading notes
Core claim
The central discovery is a diagnosis and a cure. In a diagonal SSM, each basis kernel is a damped complex exponential whose discrete frequency is $\Omega = \Delta\omega$; discretizing a continuous pole $\lambda = -\alpha + i\omega$ maps it to $e^{-\alpha\Delta + i\Delta\omega}$, so $\Delta$ shifts both decay and resonance. S4D-Lin and S4D-Inv initializations therefore cover different spectral regions depending on $\Delta$, and when $\Delta$ misses the task's intrinsic timescale, the learned kernels collapse to a local band—in sCIFAR the effective kernel has peaks only at row-stride offsets and almost no energy beyond. S4D-DFouT instead initializes $\lambda_n = \exp(-\xi n/2 + i 2\pi n/N)$ in the discrete domain, putting all poles on a uniform grid around the unit circle with a shared learnable damping; this gives complete, non-redundant coverage independent of $\Delta$ and, in the $\xi = 0$ limit, reduces the state transition to the DFT. On Long Range Arena the paper reports 87.89% accuracy on PathX-256 from scratch, the first such result without self-pretraining.
Load-bearing premise
The central premise is that the repeating pattern a task depends on has one of the evenly spaced periods the initialization provides; if the key information repeats at any other rate, the fixed grid supplies no mode to detect it.
Editorial extensions
If this is right
- S4D-DFouT makes the initialization's frequency coverage independent of the discretization step $\Delta$, so the same hyperparameter settings transfer across LRA tasks without task-specific $\Delta$ tuning.
- Fourier-initialized SSMs can match or exceed HiPPO-style diagonal baselines when their spectral support is uniform, overturning the earlier view that Fourier initialization underperforms on hard LRA tasks.
- Far from requiring long-range receptive fields, LRA successes can be driven by local structure captured by a few spectral modes; in sCIFAR the learned kernels are essentially determined by the first 32 coefficients, the row stride.
- The first from-scratch run on PathX-256 (87.89% accuracy) shows diagonal SSMs can scale to 65,536-token sequences without self-pretraining.
Reading between the lines
- Editorial inference: the uniform-grid argument suggests an adaptive initialization that places poles at the top-$K$ dominant frequencies estimated from the training data would need fewer modes than a full uniform grid for the same accuracy on local-structure tasks.
- Editorial inference: because the universal-approximation claim in the paper holds for $N$-periodic circular kernels rather than arbitrary length-$L$ kernels, a direct comparison on a synthetic task with an off-grid informative frequency would delimit when the initialization helps versus when it is neutral.
- Editorial inference: the observed inactivity of most SSM modes under the baseline suggests that the same $H_\infty$-norm analysis applied to S4D-DFouT after training could yield a pruning criterion, shrinking models with little accuracy loss.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper analyzes diagonal state-space model (SSM) initializations from a frequency-domain perspective. It argues that existing continuous-domain initializations such as S4D-Lin and S4D-Inv entangle decay and frequency through the discretization step Δ, producing non-uniform spectral coverage and sensitivity to the chosen Δ. The authors propose S4D-DFouT, which initializes the discrete-time poles directly on a uniform grid λ_n = exp(-ξn/2 + i2πn/N), optionally with layer-wise phase offsets, and claim this yields alias-free uniform spectral coverage independent of Δ. The paper provides a frequency-response analysis, a motivating delay task, and experiments on the Long Range Arena benchmark, including a from-scratch PathX-256 result at 87.89% accuracy, along with ablations and kernel visualizations suggesting that previously initialized SSMs learn local, row-periodic kernels on image tasks.
Significance. If the empirical results are reproducible, the from-scratch PathX-256 result is a noteworthy advance for diagonal SSMs, and the frequency-based design principle is simple and potentially useful. The experimental section is thorough, with per-task hyperparameters, multiple ablations, and an honest report of a failure on psCIFAR. However, the theoretical claims exceed what is proved: the 'universal approximator' statement in Section 4.2 is false as stated, and Proposition 1's proof contains a concrete algebraic error. These issues do not necessarily invalidate the empirical findings, but they must be corrected before the paper can be accepted.
major comments (2)
- [Section 4.2, Eq. (10)] The claim in Section 4.2 that S4D-DFouT 'enables the system to act as a universal approximator' is not supported by the preceding derivation. For ξ=0, the modes λ_n = e^{i2πn/N} yield basis kernels K_n[l] that are N-periodic in l, so the span of the N modes is confined to N-periodic sequences; a delay kernel δ_{l,τ} with τ>N is not representable. Moreover, for a sequence length L not a multiple of N, these exponentials are not orthogonal over l=0,...,L−1, so the 'complete, non-redundant basis' statement applies only to the N-point DFT/circular convolution. The layer-wise synchronization in Eq. (11) provides NH distinct frequencies, which may be the real source of dense coverage (for PathX-256, NH=32768 and L/2=32768), but no condition on H, N, L is stated under which the fixed grid covers the relevant task frequencies. The claim should be weakened to a statement about uniform coverage at the DFT grid, with the covering condition made explicit.
- [Appendix B, Proposition 1] Appendix B, Proposition 1 contains an algebraic error. For V_{l,n}=e^{i2πnl/τ} with l=0,...,τ, the off-diagonal entries of the Gram matrix are ∑_{l=0}^{τ} e^{i2π(n−m)l/τ} = 1 for n≠m, not 0. Hence V*V ≠ (τ+1)I, the condition number is not one, and the claimed one-step gradient descent convergence with η=1/(τ+1) does not follow. The proof also assumes continuous poles with no real part (w_n=iπn), whereas S4D-Lin is defined in Eq. (9) with poles −1/2+iπn, so the proposition does not accurately describe S4D-Lin under ZOH discretization. The spike-at-τ conclusion may remain true qualitatively, but the theorem and proof must be corrected or the proposition removed.
minor comments (4)
- [Section 4.2] There are typographical errors in the S4D-DFouT paragraph: 'propsoe' should be 'propose' and 'absis' should be 'basis'. Also, 'S4D-DfouT' appears in Section 5.5 and Figure 8 with inconsistent capitalization.
- [Section 3.1 / Proposition 1] The notation for the kernel index is inconsistent: the proposition uses ℓ while Eq. (5) uses l. Please unify.
- [Section 4.2 / Table 5] It is unclear whether the experimental results use the full grid of Eq. (10) or the half-plane variant described in Section 4.2; the hyperparameters in Table 5 do not specify. Please clarify this in the experimental setup.
- [Appendix A.1, Eq. (12)] The recurrence in Eq. (12) appears to contain a typo: 'h[l + 1] = Λx[l] + Bx[l]' should likely read 'h[l + 1] = Λh[l] + Bx[l]', and 'y[l] = Cx[l]' should likely be 'y[l] = C^T h[l]'.
Circularity Check
No circularity: S4D-DFouT's uniform spectral placement is a design choice, the LRA numbers are measured outcomes, and no load-bearing self-citation chain appears.
full rationale
The paper's central proposal, S4D-DFouT, places poles directly in the discrete domain as λ_n = exp(−ξn/2 + i2πn/N). The statement that this provides uniform, alias-free spectral coverage is a restatement of the construction rather than a fitted or externally predicted quantity; the paper presents it as the design rationale, not as an empirical prediction derived from fitted constants. The Long Range Arena accuracies in Table 1 are measured benchmark results and are not reconstructed from the initialization formula, and no parameter is fitted to a subset of LRA data and then reported as a prediction for that same data. The paper contains no self-citations; all cited prior work is by other authors, so there is no self-citation load-bearing chain. Two correctness concerns are noted but they are not circularity: the 'universal approximator' sentence in Section 4.2 overstates the DFT basis (for ξ=0 the basis is complete only for N-periodic circular kernels, not arbitrary length-L kernels), and the Gram-matrix identity in Proposition 1's proof in Appendix B is mathematically incorrect, since the off-diagonal sums are 1, not 0. Neither issue makes the derivation equivalent to its own inputs, so the circularity burden remains at zero.
Assumptions & free parameters
free parameters (3)
- xi (learnable damping factor) =
learned during training; per-task range (xi_min, xi_max)
- State size N and embedding size H =
N in 64 to 256, H in 128 to 512 depending on task
- Phase offsets phi_h =
2*pi*(h-1)/(N*H) for h = 1..H
assumptions (5)
- standard math Zeroth-order hold discretization maps continuous poles lambda to exp(Delta*lambda)
- standard math DFT basis completeness: N unit-circle exponentials span the space of N-periodic sequences
- domain assumption Taking the real part of the complex kernel preserves the ability to represent real-valued signals
- domain assumption The local-attention profile learned on sCIFAR transfers to the LRA image tasks
- ad hoc to paper Uniform alias-free spectral coverage at initialization is sufficient for good performance across tasks
Cite this review
Pith. "Pith review of Uncovering the Spectral Bias in Diagonal State Space Models." pith.science (2026). https://pith.science/paper/645EBDXS
@misc{pith2026250820441,
author = {Pith},
title = {Pith review of: Uncovering the Spectral Bias in Diagonal State Space Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/645EBDXS}},
note = {Machine review of arXiv:2508.20441}
}
read the original abstract
Current methods for initializing state space models (SSMs) parameters mainly rely on the \textit{HiPPO framework}, which is based on an online approximation of orthogonal polynomials. Recently, diagonal alternatives have shown to reach a similar level of performance while being significantly more efficient due to the simplification in the kernel computation. However, the \textit{HiPPO framework} does not explicitly study the role of its diagonal variants. In this paper, we take a further step to investigate the role of diagonal SSM initialization schemes from the frequency perspective. Our work seeks to systematically understand how to parameterize these models and uncover the learning biases inherent in such diagonal state-space models. Based on our observations, we propose a diagonal initialization on the discrete Fourier domain \textit{S4D-DFouT}. The insights in the role of pole placing in the initialization enable us to further scale them and achieve state-of-the-art results on the Long Range Arena benchmark, allowing us to train from scratch on very large datasets as PathX-256.
Figures
Figures from the paper (6 more)
Forward citations
Cited by 1 Pith paper
-
SHiPPO: Recurrent Memory with Transported Polynomial Projections
SHiPPO transports HiPPO coefficient memories via right actions into Sylvester dynamics, and diagnostics show this recovers order-sensitive memory changes that high-rank writes cannot.
Reference graph
Works this paper leans on
-
[1]
Vision mamba: Efficient visual representation learning with bidirectional state space model
Lianghui Zhu, Bencheng Liao, Qian Zhang, Xinlong Wang, Wenyu Liu, and Xinggang Wang. Vision mamba: Efficient visual representation learning with bidirectional state space model. In ICML. OpenReview.net, 2024
work page 2024
-
[2]
Fouriermamba: Fourier learning integration with state space models for image deraining
Dong Li, Yidi Liu, Xueyang Fu, Senyan Xu, and Zheng-Jun Zha. Fouriermamba: Fourier learning integration with state space models for image deraining. CoRR, abs/2405.19450, 2024
arXiv 2024
-
[3]
Downs, Preey Shah, Tri Dao, Stephen Baccus, and Christopher Ré
Eric Nguyen, Karan Goel, Albert Gu, Gordon W. Downs, Preey Shah, Tri Dao, Stephen Baccus, and Christopher Ré. S4ND: modeling images and videos as multidimensional signals with state spaces. In NeurIPS, 2022
work page 2022
-
[4]
Effectively modeling time series with simple discrete state spaces
Michael Zhang, Khaled Kamal Saab, Michael Poli, Tri Dao, Karan Goel, and Christopher Ré. Effectively modeling time series with simple discrete state spaces. In ICLR. OpenReview.net, 2023
work page 2023
-
[5]
Fu, Tri Dao, Khaled Kamal Saab, Armin W
Daniel Y . Fu, Tri Dao, Khaled Kamal Saab, Armin W. Thomas, Atri Rudra, and Christopher Ré. Hungry hungry hippos: Towards language modeling with state space models. In ICLR. OpenReview.net, 2023
work page 2023
-
[6]
Mamba: Linear-time sequence modeling with selective state spaces
Albert Gu and Tri Dao. Mamba: Linear-time sequence modeling with selective state spaces. CoRR, abs/2312.00752, 2023
arXiv 2023
-
[7]
Tri Dao and Albert Gu. Transformers are ssms: Generalized models and efficient algorithms through structured state space duality. In ICML. OpenReview.net, 2024
work page 2024
-
[8]
Hippo: Recurrent memory with optimal polynomial projections
Albert Gu, Tri Dao, Stefano Ermon, Atri Rudra, and Christopher Ré. Hippo: Recurrent memory with optimal polynomial projections. In NeurIPS, 2020
work page 2020
Show all 41 references
-
[9]
Efficiently modeling long sequences with structured state spaces
Albert Gu, Karan Goel, and Christopher Ré. Efficiently modeling long sequences with structured state spaces. In ICLR. OpenReview.net, 2022
2022
-
[10]
How to train your HIPPO: state space models with generalized orthogonal basis projections
Albert Gu, Isys Johnson, Aman Timalsina, Atri Rudra, and Christopher Ré. How to train your HIPPO: state space models with generalized orthogonal basis projections. In ICLR. OpenReview.net, 2023
2023
-
[11]
Diagonal state spaces are as effective as structured state spaces
Ankit Gupta, Albert Gu, and Jonathan Berant. Diagonal state spaces are as effective as structured state spaces. In NeurIPS, 2022
2022
-
[12]
On the parameterization and initialization of diagonal state space models
Albert Gu, Karan Goel, Ankit Gupta, and Christopher Ré. On the parameterization and initialization of diagonal state space models. In NeurIPS, 2022
2022
-
[13]
Smith, Albert Gu, Anushan Fernando, Çaglar Gülçehre, Razvan Pascanu, and Soham De
Antonio Orvieto, Samuel L. Smith, Albert Gu, Anushan Fernando, Çaglar Gülçehre, Razvan Pascanu, and Soham De. Resurrecting recurrent neural networks for long sequences. In ICML, volume 202 of Proceedings of Machine Learning Research, pages 26670–26698. PMLR, 2023
2023
-
[14]
Jimmy T. H. Smith, Andrew Warrington, and Scott W. Linderman. Simplified state space layers for sequence modeling. In ICLR. OpenReview.net, 2023
2023
-
[15]
Parnichkun, Stefano Massaroli, Alessandro Moro, Jimmy T
Rom N. Parnichkun, Stefano Massaroli, Alessandro Moro, Jimmy T. H. Smith, Ramin M. Hasani, Mathias Lechner, Qi An, Christopher Ré, Hajime Asama, Stefano Ermon, Taiji Suzuki, Michael Poli, and Atsushi Yamashita. State-free inference of state-space models: The *transfer function...
2024
-
[16]
Layer-adaptive state pruning for deep state space models
Minseon Gwak, Seongrok Moon, Joohwan Ko, and PooGyeon Park. Layer-adaptive state pruning for deep state space models. In NeurIPS, 2024
2024
-
[17]
Long range arena : A benchmark for efficient transformers
Yi Tay, Mostafa Dehghani, Samira Abnar, Yikang Shen, Dara Bahri, Philip Pham, Jinfeng Rao, Liu Yang, Sebastian Ruder, and Donald Metzler. Long range arena : A benchmark for efficient transformers. In ICLR. OpenReview.net, 2021
2021
-
[18]
Long short-term memory
Sepp Hochreiter and Jürgen Schmidhuber. Long short-term memory. Neural computation, 9(8):1735–1780, 1997
1997
-
[19]
On the difficulty of training recurrent neural networks
Razvan Pascanu, Tomás Mikolov, and Yoshua Bengio. On the difficulty of training recurrent neural networks. In ICML (3), volume 28 of JMLR Workshop and Conference Proceedings, pages 1310–1318. JMLR.org, 2013
2013
-
[20]
Mikhaeil, Zahra Monfared, and Daniel Durstewitz
Jonas M. Mikhaeil, Zahra Monfared, and Daniel Durstewitz. On the difficulty of learning chaotic dynamics with rnns. In NeurIPS, 2022
2022
-
[21]
Legendre memory units: Continuous-time representation in recurrent neural networks
Aaron V oelker, Ivana Kajic, and Chris Eliasmith. Legendre memory units: Continuous-time representation in recurrent neural networks. In NeurIPS, pages 15544–15553, 2019
2019
-
[22]
Fu, Tri Dao, Stephen Baccus, Yoshua Bengio, Stefano Ermon, and Christopher Ré
Michael Poli, Stefano Massaroli, Eric Nguyen, Daniel Y . Fu, Tri Dao, Stephen Baccus, Yoshua Bengio, Stefano Ermon, and Christopher Ré. Hyena hierarchy: Towards larger convolutional language models. In ICML, volume 202 of Proceedings of Machine Learning Research, pages 28043–2...
2023
-
[23]
Hasani, Mathias Lechner, Tsun-Hsuan Wang, Makram Chahine, Alexander Amini, and Daniela Rus
Ramin M. Hasani, Mathias Lechner, Tsun-Hsuan Wang, Makram Chahine, Alexander Amini, and Daniela Rus. Liquid structural state-space models. In ICLR. OpenReview.net, 2023
2023
-
[24]
Autocorrelation matters: Understanding the role of initialization schemes for state space models
Fusheng Liu and Qianxiao Li. Autocorrelation matters: Understanding the role of initialization schemes for state space models. CoRR, abs/2411.19455, 2024
2024 arXiv
-
[25]
Mega: Moving average equipped gated attention
Xuezhe Ma, Chunting Zhou, Xiang Kong, Junxian He, Liangke Gui, Graham Neubig, Jonathan May, and Luke Zettlemoyer. Mega: Moving average equipped gated attention. In ICLR. OpenReview.net, 2023
2023
-
[26]
Gomez, Lukasz Kaiser, and Illia Polosukhin
Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez, Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. In NIPS, pages 5998–6008, 2017
2017
-
[27]
Enhancing the locality and breaking the memory bottleneck of transformer on time series forecasting
Shiyang Li, Xiaoyong Jin, Yao Xuan, Xiyou Zhou, Wenhu Chen, Yu-Xiang Wang, and Xifeng Yan. Enhancing the locality and breaking the memory bottleneck of transformer on time series forecasting. In NeurIPS, pages 5244–5254, 2019
2019
-
[28]
Never train from scratch: Fair comparison of long-sequence models requires data-driven priors
Ido Amos, Jonathan Berant, and Ankit Gupta. Never train from scratch: Fair comparison of long-sequence models requires data-driven priors. In ICLR. OpenReview.net, 2024
2024
-
[29]
Speech commands: A dataset for limited-vocabulary speech recognition
Pete Warden. Speech commands: A dataset for limited-vocabulary speech recognition. CoRR, abs/1804.03209, 2018
2018 arXiv
-
[30]
Romero, Anna Kuzina, Erik J
David W. Romero, Anna Kuzina, Erik J. Bekkers, Jakub Mikolaj Tomczak, and Mark Hoogen- doorn. Ckconv: Continuous kernel convolution for sequential data. In ICLR. OpenReview.net, 2022
2022
-
[31]
Observer-based asynchronous event-triggered robust h∞, adaptive switching control for nonlinear industrial cyber physical systems under data injection attacks
Yanfei Qin and Ziwen Sun. Observer-based asynchronous event-triggered robust h∞, adaptive switching control for nonlinear industrial cyber physical systems under data injection attacks. International Journal of Control, Automation and Systems , 21(7):2175–2182, 2023
2023
-
[32]
Chang Wei Tan, Christoph Bergmeir, François Petitjean, and Geoffrey I. Webb. BIDMC blood oxygen saturation dataset (32 seconds window) (version 2). https://doi.org/10.5281/ zenodo.4001464, June 2020. Accessed on YYYY-MM-DD
2020
-
[33]
Reformer: The efficient transformer
Nikita Kitaev, Lukasz Kaiser, and Anselm Levskaya. Reformer: The efficient transformer. In ICLR. OpenReview.net, 2020. 11
2020
-
[34]
Big bird: Transformers for longer sequences
Manzil Zaheer, Guru Guruganesh, Kumar Avinava Dubey, Joshua Ainslie, Chris Alberti, Santiago Ontañón, Philip Pham, Anirudh Ravula, Qifan Wang, Li Yang, and Amr Ahmed. Big bird: Transformers for longer sequences. In NeurIPS, 2020
2020
-
[35]
Transformers are rnns: Fast autoregressive transformers with linear attention
Angelos Katharopoulos, Apoorv Vyas, Nikolaos Pappas, and François Fleuret. Transformers are rnns: Fast autoregressive transformers with linear attention. In ICML, volume 119 of Proceedings of Machine Learning Research, pages 5156–5165. PMLR, 2020
2020
-
[36]
Colwell, and Adrian Weller
Krzysztof Marcin Choromanski, Valerii Likhosherstov, David Dohan, Xingyou Song, Andreea Gane, Tamás Sarlós, Peter Hawkins, Jared Quincy Davis, Afroz Mohiuddin, Lukasz Kaiser, David Benjamin Belanger, Lucy J. Colwell, and Adrian Weller. Rethinking attention with performers. In ...
2021
-
[37]
For the sake of simplicity, let’s suppose poles of the continuous system have no decaywn =iπn; then, ZOH gives dn = exp(Ω) = exp(wn ∆) = exp(iπn∆)
Discrete poles via ZOH. For the sake of simplicity, let’s suppose poles of the continuous system have no decaywn =iπn; then, ZOH gives dn = exp(Ω) = exp(wn ∆) = exp(iπn∆)
-
[38]
The first harmonic n = 1 has frequency Ω1 = π∆
Fundamental discrete period. The first harmonic n = 1 has frequency Ω1 = π∆. A full 2π rotation requires Ω1T = 2π =⇒ T = 2/∆. Thus one cycle of n = 1 takes preciselyT = 2/∆ steps
-
[39]
SetT =τ, i.e
MatchingT toτ. SetT =τ, i.e. ∆ = 2/τ. Then for anyn, dτ n = exp inπ ∆τ = exp(i 2πn ) = 1, so all modes align in phase at stepl =τ
-
[40]
The SSM kernel is K[l] =ℜ 2 N−1X n=0 Cndl n =ℜ 2 N−1X n=0 dl n
Kernel evaluation. The SSM kernel is K[l] =ℜ 2 N−1X n=0 Cndl n =ℜ 2 N−1X n=0 dl n . Atl =τ, sincedτ n = 1 for alln, K[τ] = 2ℜ N−1X n=0 1 = 2N, whereas forl̸=τ, thedl n are not all unity and partially cancel, yielding|K[l]|<K [τ]
-
[41]
local attention
Conditioning and GD. Fix an integer delayτ >N . Then for 0≤l≤τ and 0≤n≤N− 1, the Vandermonde matrix Vl,n =dl n = exp i 2πn τ l is exactly a (τ + 1)×N partial Fourier matrix. Concretely, its Gram matrix is V∗V = τX l=0 dl ndlm n,m = τX l=0 ei2π(n−m)l/τ = τ + 1, n =m, 0, n ̸=m ,...
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.