نتایج جستجو برای: regadenoson

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

Journal: :JACC. Cardiovascular imaging 2015
Albert J Sinusas

A lthough regadenoson has nearly replaced other vasodilator stressors for single-photon emission computed tomography perfusion imaging, the benefits of regadenoson stress for positron emission tomography (PET) perfusion are less clearly established, particularly in the estimation of absolute stress flow with dynamic PET imaging. In the estimation of absolute flow with dynamic PET, the timing of...

2013
Benjamin H Freed Akhil Narang Nicole M Bhave Peter Czobor Victor Mor-Avi Emily R Zaran Kristen M Turner Kevin P Cavanaugh Sonal Chandra Sara M Tanaka Michael H Davidson Roberto M Lang Amit R Patel

BACKGROUND Regadenoson is a vasodilator stress agent that selectively activates the A2A receptor. Compared to adenosine, regadenoson is easier to administer and results in fewer side effects. Although extensively studied in patients undergoing nuclear perfusion imaging (MPI), its use for perfusion cardiovascular magnetic resonance (CMR) is not well described. The aim of this study was to determ...

2015
Nishaki Kiran Mehta Charles Hardebeck Martha Gulati

The incidence of false-positive stress tests has been noted in women, especially on hormone replacement therapy. Current literature describes this phenomenon in treadmill and adenosine stress tests. The introduction of regadenoson as a vasodilator agent has been widely adopted owing to its potency and specificity. To our knowledge, false-positive stress test with regadenoson in a postmenopausal...

2011
Sujethra Vasu W Patricia Bandettini Li-Yueh Hsu Peter Kellman Marcus Y Chen Joel Wilson Steve Leung Sujata M Shanbhag O Julian Booker Christine Mancini Jennifer Henry Tracy Lowrey Andrew E Arai

Methods Forty patients with normal coronaries/minimal stenosis on coronary CT angiography had also undergone vasodilator stress MR (regadenoson n=20, dipyridamole n=20). Seventeen healthy normal volunteers with Framingham score less than 1% underwent vasodilator stress testing with regadenoson and dipyridamole in two separate studies using a SSFP sequence. Stress imaging was done 70 seconds pos...

Journal: :Circulation. Cardiovascular imaging 2011
Thomas R Porter Mary Adolphson Robin R High Lynette M Smith Joan Olson Michelle Erdkamp Feng Xie Edward O'Leary Benjamin F Wong Susan Eifert-Rain Mary E Hagen Sahar S Abdelmoneim Sharon L Mulvagh

BACKGROUND Real-time myocardial contrast echocardiography permits the detection of myocardial perfusion abnormalities during stress echocardiography, which may improve the accuracy of the test in detecting coronary artery stenoses. We hypothesized that this technique could be used after a bolus injection of the selective A2A receptor agonist regadenoson to rapidly and safely detect coronary art...

2014
Kim-Lien Nguyen W. Patricia Bandettini Sujata Shanbhag Steve W. Leung Joel R. Wilson Andrew E. Arai

AIMS Knowledge of adverse events associated with regadenoson perfusion cardiac magnetic resonance (CMR) and patient tolerability has implications for patient safety and staff training. We sought to assess the safety and tolerability of regadenoson stress CMR. MATERIALS AND METHODS A group of 728 consecutive patients (median age 58, 44% female) and 25 normal volunteers (median age 21, 24% fema...

Journal: :Hellenic journal of nuclear medicine 2017
John Koutsikos George Angelidis Athanasios Zafeirakis Ioannis Mamarelis Merkourios Vogiatzis Eliverta Ilia Kyriakos Lazaridis Nikolaos Demakopoulos

OBJECTIVE MPI can provide valuable information in the investigation of patients with known or suspected coronary artery disease. The stress component of the studies can be conducted with regadenoson, which was approved for clinical use in Greece in 2016. We investigated the performance and safety profile of regadenoson MPI based on our 7 months institutional experience. PATIENTS AND METHODS W...

Journal: :European heart journal cardiovascular Imaging 2014
Federico Caobelli Frank M Bengel

In recent years, regadenoson has increasingly penetrated the clinical market as a novel pharmacologic stress agent for myocardial perfusion imaging (MPI). Regadenoson has favourable features such as a rapid onset of vasodilation with sustained action, enabling injection as a slow bolus, and a preferable side-effect profile when compared with adenosine due to adenosine A2A receptor subtype selec...

2012
Bruce M. Prenner Stan Bukofzer Sarah Behm Kathleen Feaheny Bruce E. McNutt

BACKGROUND Adenosine receptor stress agents for myocardial perfusion imaging (MPI) may cause A(2B) and/or A(3) receptor-mediated bronchoconstriction, of particular concern to physicians testing patients with asthma or chronic obstructive pulmonary disease (COPD). METHODS A Phase 4, randomized, double-blind study (NCT00862641) assessed the safety of the selective A(2A) receptor agonist, regade...

Journal: :Journal of Postgraduate Medicine 2012

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

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

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"; } -->