| title | People |
|---|---|
| permalink | /people/ |
The Embodied Computation Group is a multidisciplinary team bringing together expertise in computational modelling, psychophysics, neuroimaging, and clinical research. We are united by our interest in understanding how visceral and embodied processes shape cognition, emotion, and perception.
{% assign people_sorted = site.people | sort: 'joined' %} {% assign role_array = "pi|postdoc|gradstudent|researchstaff|visiting|others|alumni" | split: "|" %}
{% for role in role_array %}
{% assign people_in_role = people_sorted | where: 'position', role %}
{% if people_in_role.size == 0 %} {% continue %} {% endif %}
{% if role != 'alumni' %}
{% if profile.avatar %}
{% else %}
{% endif %}
{{ profile.name }}
{% else %}
{% assign alumni_sorted = people_sorted | where: 'position', 'alumni' | sort: 'joined' | reverse %}
{% for profile in alumni_sorted %} {% endfor %}| Who are they | When were they here | Where they went |
|---|---|---|
| {{ profile.name }} | {{ profile.former_role }} ({{ profile.joined }}-{{ profile.left }}) | {{ profile.current_position }} |
{% endif %} {% endfor %}