نتایج جستجو برای: post stroke dementia

تعداد نتایج: 574787  

2012
Beom Joon Kim Mi-Young Oh Myung Suk Jang Moon-Ku Han Jisung Lee Juneyoung Lee Yeonwook Kang Kyung-Ho Yu Byung-Chul Lee Sangyun Kim Byung-Woo Yoon Hee-Joon Bae

BACKGROUND AND PURPOSE It was recently reported that the prevalence of poststroke memory dysfunction might be higher than previously thought. Stroke may exist concomitantly with underlying Alzheimer's disease (AD), and so we determined whether post-stroke memory dysfunction indicates manifestation of underlying subclinical AD. METHODS Of 1201 patients in a prospective cognitive assessment dat...

Journal: :Stroke 2017
Matthew P Pase Jayandra J Himali Alexa S Beiser Hugo J Aparicio Claudia L Satizabal Ramachandran S Vasan Sudha Seshadri Paul F Jacques

BACKGROUND AND PURPOSE Sugar- and artificially-sweetened beverage intake have been linked to cardiometabolic risk factors, which increase the risk of cerebrovascular disease and dementia. We examined whether sugar- or artificially sweetened beverage consumption was associated with the prospective risks of incident stroke or dementia in the community-based Framingham Heart Study Offspring cohort...

2010
Stéphanie Debette H S Markus

OBJECTIVES To review the evidence for an association of white matter hyperintensities with risk of stroke, cognitive decline, dementia, and death. DESIGN Systematic review and meta-analysis. DATA SOURCES PubMed from 1966 to 23 November 2009. STUDY SELECTION Prospective longitudinal studies that used magnetic resonance imaging and assessed the impact of white matter hyperintensities on ris...

Journal: :Stroke 2003
Peter Appelros Ingegerd Nydevik Matti Viitanen

BACKGROUND AND PURPOSE The purpose of this study was to define predictors of poor outcome after a first-ever stroke. We studied risk factors and stroke severity at baseline in relationship to death, dependency, and stroke recurrence within a year after the event. METHODS The study included a community-based cohort of first-ever stroke patients. Subarachnoid hemorrhage was not included. All pa...

Journal: :Alzheimers & Dementia 2023

Background Post Stroke Cognitive Impairment (PSCI) is seen in 40-60% of patients with ischemic strokes. Response PSCI to structured cognitive rehabilitation not clearly understood. We evaluated baseline variables that predict response an eight-week non-pharmacological intervention among mild strokes and compared the responses acute stroke without chronic cerebrovascular disease (CVD). Method 13...

Journal: :Stroke 2004
Wai Kwong Tang Sandra S M Chan Helen F K Chiu Gabor S Ungvari Ka Sing Wong Timothy C Y Kwok Vincent Mok K T Wong Polly S Richards A T Ahuja

BACKGROUND AND PURPOSE Both dementia and stroke are major health problems in Chinese societies. Stroke is a frequent cause of dementia. Only a few studies have been published on poststroke dementia (PSDE), none of which has investigated a consecutive stroke cohort in Asian patient populations. The objective of this study was to examine the prevalence and clinical correlates of PSDE in Chinese s...

Journal: :Stroke 2011
Jose Alvarez-Sabín Gustavo C Román

Cognitive decline after stroke is more common than stroke recurrence. Stroke doubles the risk of dementia and is a major contributor to vascular cognitive impairment and vascular dementia. Neuropathological studies in most cases of dementia in the elderly reveal a large load of vascular ischemic brain lesions mixed with a lesser contribution of neurodegenerative lesions of Alzheimer disease. No...

2015
Polly Scutt Dan Blackburn Kailash Krishnan Clive Ballard Alistair Burns Gary A. Ford Jonathan Mant Peter Passmore Stuart Pocock John Reckless Nikola Sprigg Rob Stewart Joanna M. Wardlaw Philip M. Bath

BACKGROUND A common complication after stroke is development of cognitive impairment and dementia. However, effective strategies for reducing the risk of developing these problems remain undefined. Potential strategies include intensive lowering of blood pressure (BP) and/or lipids. This paper summarises the baseline characteristics, statistical analysis plan and feasibility of a randomised con...

2012
Hege Ihle-Hansen Bente Thommessen Morten Wang Fagerland Torgeir Bruun Wyller Knut Engedal Anne Rita Øksengård Vidar Stenset Kirsti Løken Brynjar Fure

BACKGROUND/AIM Post-stroke cognitive impairment and dementia may be caused by pure vascular, pure degenerative or mixed disease. The relation between post-stroke cognitive impairment and the combination of vascular pathology and degenerative changes is less evaluated. We aimed to evaluate the associations between white matter lesions (WMLs) and patient performance 1 year after stroke on tests o...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->