Skip to content

Instantly share code, notes, and snippets.

@neopunisher
Created November 12, 2024 04:10
Show Gist options
  • Save neopunisher/a4c2039c3199c5d2d9efbe82aa1a11b2 to your computer and use it in GitHub Desktop.
Save neopunisher/a4c2039c3199c5d2d9efbe82aa1a11b2 to your computer and use it in GitHub Desktop.
graph LR
    DMN[Default Mode Network]
    CEN[Central Executive Network]
    SN[Salience Network]
    SMN[Sensory-Motor Network]
    VN[Visual Network]
    AN[Auditory Network]
    LN[Limbic Network]
    SCN[Subcortical Network]

    DMN <-- Communicates with --> SN
    CEN <-- Communicates with --> SN
    SN <-- Modulates --> DMN
    SN <-- Modulates --> CEN
    SMN -- Interacts with --> CEN
    VN -- Provides input to --> CEN
    AN -- Provides input to --> CEN
    LN -- Influences --> DMN
    SCN -- Modulates --> All[All Networks]

    subgraph "Sensory Inputs"
        VN
        AN
    end

    subgraph "Higher Cognitive Functions"
        DMN
        CEN
        SN
    end

    subgraph "Motor Functions"
        SMN
    end

    subgraph "Emotional Processing"
        LN
    end

    subgraph "Modulatory Systems"
        SCN
    end
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment