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

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

Journal: :Chest 1993
D Sajkov R D McEvoy R J Cowie J A Bradley R Antic R G Morris P A Frith

Pulmonary hypertension in chronic obstructive pulmonary disease (COPD) is associated with a poor prognosis. Reduction of pulmonary artery pressure in COPD by prolonged oxygen treatment has been shown to be associated with increased survival. In an attempt to find a suitable pharmacologic method of reducing pulmonary artery pressure and pulmonary vascular resistance in COPD, we enrolled 13 stabl...

Journal: :Hypertension 1998
K Hishikawa T F Lüscher

An imbalance between nitric oxide (NO) and superoxide is importantly involved in the pathogenesis of vascular disease. Inflammatory stimuli and risk factors contribute to these alterations. Calcium antagonists and angiotensin-converting enzyme inhibitors are commonly used cardiovascular drugs. To clarify the effect of felodipine and ramiprilat on the balance of these free radicals, we stimulate...

2005
Hiroshi Shionoiri Toshikazu Takizawa Yasuo Ohyama Jun Ishii Shigehiro Katayama Toshihiko Nagasawa Kiyoshi Kitamoto Koichi Nagasawa Yoshito Hariya Ryogo Sato Teizo Ito Masao Ishii

The effects of long-term monotherapy with felodipine, a calcium antagonist, on blood pressure, glucose tolerance, and serum lipid profiles were prospectively investigated in 51 hypertensive patients: 13 with normal glucose tolerance and 38 with glucose intolerance. The levels of plasma glucose, serum lipids, and glycosylated hemoglobin Alc were determined before and during long-term (7.5±0.5 mo...

Journal: :Journal of managed care pharmacy : JMCP 2002
Raul Arocho Amy Solis Sally Wade George Goldberg Simon Tang

OBJECTIVE To examine challenges in forming accurate conclusions from claims data when comparing different patient groups, and to stress the need to adjust for confounding variables through application of statistical methods. METHODS Patients who were 60 or older and began amlodipine or felodipine in 1997 or 1998 were identified from a proprietary managed care claims database. Patients had 6 m...

Journal: :American journal of hypertension 2006
William H Frishman James W Hainer Jennifer Sugg

BACKGROUND Many hypertensive patients require combination therapy to achieve target blood pressure (BP). beta-Blockers and dihydropyridine calcium channel blockers are effective as monotherapy in hypertensive patients and have complementary mechanisms for lowering BP. METHODS This multicenter, randomized, placebo-controlled, unbalanced factorial study included a 4- to 5-week single-blind plac...

Journal: :Journal of hypertension 2005
Lisheng Liu Yuqing Zhang Guozhang Liu Wei Li Xuezhong Zhang Alberto Zanchetti

OBJECTIVE To compare the incidence of stroke and other cardiovascular events in hypertensive patients receiving a low-dose diuretic and low-dose calcium antagonist combination with those receiving low-dose diuretic monotherapy, and assess the effects of a small blood pressure difference at achieved levels lower than those achieved in previous placebo-controlled trials. METHODS The Felodipine ...

Journal: :Clinical pharmacology and therapeutics 2001
S Malhotra D G Bailey M F Paine P B Watkins

OBJECTIVE Our objective was to determine whether Seville orange juice produces a grapefruit juice-like interaction with felodipine and whether bergamottin, 6',7'-dihydroxybergamottin, or other furocoumarins are involved. METHODS In a randomized three-way crossover design, 10 volunteers received a felodipine 10-mg extended-release tablet with 240 mL of Seville orange juice, dilute grapefruit j...

Journal: :Value in health : the journal of the International Society for Pharmacoeconomics and Outcomes Research 2015
A Singh S Chauhan

Journal: :Cardiology 2013
Longquan Yang Jing Yu Ruixin Ma Feng Zhao Xin Lin Peijun Liu Hao Hu Feng Bai

OBJECTIVES This study aimed to determine whether combining a calcium channel blocker with either an angiotensin II receptor blocker or a β-blocker would have similar effects on sexual function in men with hypertension. METHODS This prospective, randomized study (ClinicalTrials.gov: NCT01​238705) included 218 male participants with untreated hypertension. Patients were randomized to treatment ...

Journal: :The Journal of clinical investigation 1997
K S Lown D G Bailey R J Fontana S K Janardan C H Adair L A Fortlage M B Brown W Guo P B Watkins

The increase in oral availability of felodipine and other commonly used medications when taken with grapefruit juice has been assumed to be due to inhibition of CYP3A4, a cytochrome P450 that is present in liver and intestine. To evaluate the effect of repeated grapefruit juice ingestion on CYP3A4 expression, 10 healthy men were given 8 oz of grapefruit juice three times a day for 6 d. Before a...

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

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

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