Skip to content Skip to navigation

Connexions

You are here: Home » Content » Why Eigenstuff Matters in DSP

Navigation

Content Actions

  • Download module PDF
  • Add to ...
    Add the module to:
    • My Favorites
    • A lens
    • An external social bookmarking service
    • My Favorites (What is 'My Favorites'?)
      'My Favorites' is a special kind of lens which you can use to bookmark modules and collections directly in Connexions. 'My Favorites' can only be seen by you, and collections saved in 'My Favorites' can remember the last module you were on. You need a Connexions account to use 'My Favorites'.
    • A lens (What is a lens?)

      Definition of a lens

      Lenses

      A lens is a custom view of Connexions content. You can think of it as a fancy kind of list that will let you see Connexions through the eyes of organizations and people you trust.

      What is in a lens?

      Lens makers point to Connexions materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

      Who can create a lens?

      Any individual Connexions member, a community, or a respected organization.

    • External bookmarks
  • E-mail the author

Recently Viewed

This feature requires Javascript to be enabled.

Why Eigenstuff Matters in DSP

Module by: Richard Baraniuk

Summary: An explaination as to why eigenstuff matters in DSP

Consider processing a signal xN x N with system represented by a normal matrix A A

Figure 1
Figure 1 (fig1.png)

y=Ax y A x (1)
  • matrix multiply
  • yn=K=0N-1 y n K 0 N 1 (2)
    where each yn y n involves coupling all xk x k via A n , k A n , k
  • cost: ON2 O N 2 in general
  • one-step procedure

Now consider representation

A=VΛVH A V Λ V (3)
This is implemented by a three-step procedure:
y=Ax=VΛVHx y A x V Λ V x (4)
  1. α=VHx α V x This computes the coefficients α α that build up x x in terms of eigenbasis vi v i : x=Vα x V α (ie: VH V takes x x from the "time-domain" to the "eigenbasis domain".
  2. Λα Λ α with Λ Λ a diagonal matrix Λ= λ 0 0000 λ 1 0000 ... ... 000... λ N - 1 Λ λ 0 0 0 0 0 λ 1 0 0 0 0 ... ... 0 0 0 ... λ N - 1 ie: we just do element-wise multiplication λ i α i λ i α i (super easy and no coupling between α i α i 's)
  3. VΛα=y V Λ α y takes the vector Λα Λ α back to the time-domain.

Hallmarks

  • Once we transform x x to the eigenbasis domain of A A, we can perform an operation equivalent to A A but independently on each α i α i .
  • This works for any normal matrix A A.
  • Most of the systems studied in DSP are "linear shift-invariant":
    • all correspond to normal matrices
    • all share the same V V: DFT basis
All LSI processing y=Ax y A x can be done through:
  1. α=fftx α fft x
  2. α ~ =λα α ~ λ α where λ λis diagonal of eigen matrix Λ Λ
  3. y=ifft α ~ y ifft α ~
The Cost:
  • Step 1: ONlogN O N N
  • Step 2: ON O N
  • Step 3: ONlogN O N N
  • total: ONlogN O N N
ONlogN>ON2 O N N O N 2 (5)
ie: It is faster/more efficient than y=Ax y A x directly!!!

Useful Formulas

A=VΛVH=v0v1v2...v N - 1 λ 0 0000 λ 1 0000 ... ... 000... λ N - 1 VH0VH1VH2...VH N - 1 A V Λ V v 0 v 1 v 2 ... v N - 1 λ 0 0 0 0 0 λ 1 0 0 0 0 ... ... 0 0 0 ... λ N - 1 V 0 V 1 V 2 ... V N - 1 (6)

Comments, questions, feedback, criticisms?

Send feedback