نتایج جستجو برای: eccentric target sign

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

Journal: :Discrete Mathematics 1985

Journal: :Nature Physics 2005

Journal: :Medicine & Science in Sports & Exercise 2017

2002
Dale E. Nelson Janusz A. Starzyk

− In Automatic Target Recognition (ATR) systems there are advantages to developing classifiers based on a portion of the signal. A partitioning technique is introduced in this paper that allows Rough Set Theory to be applied to real-world size problems. Rough Set Theory (RST) is an emerging concept for determining features and then classifiers from a training data set. RST guarantees that once ...

2011
Dennis Y. Wen Brian J. Schultz Bob Schaal Scott T. Graham Byung Sung Kim

BACKGROUND Effective treatments for chronic lateral epicondylosis have not been studied adequately. Eccentric overload exercises have been used with success for other chronic tendinopathy, mainly Achilles and patellar. HYPOTHESIS/PURPOSE To compare a wrist extensor eccentric strengthening exercise program with a wrist extensor stretching/modality program for the treatment of chronic lateral e...

2014
Richard M. Lovering Susan V. Brooks

Lovering RM, Brooks SV. Eccentric exercise in aging and diseased skeletal muscle: good or bad? J Appl Physiol 116: 1439–1445, 2014. First published March 7, 2013; doi:10.1152/japplphysiol.00174.2013.—Evidence is accumulating regarding the benefits of exercise in people who are more susceptible to injury, such as the elderly, or those with a neuromuscular disease, for example Duchenne muscular d...

Journal: :Journal of applied physiology 1999
M D Boppart D Aronson L Gibson R Roubenoff L W Abad J Bean L J Goodyear R A Fielding

Eccentric contractions require the lengthening of skeletal muscle during force production and result in acute and prolonged muscle injury. Because a variety of stressors, including physical exercise and injury, can result in the activation of the c-Jun NH(2)-terminal kinase (JNK) intracellular signaling cascade in skeletal muscle, we investigated the effects of eccentric exercise on the activat...

Journal: :Journal of sports science & medicine 2003
Yavuz Yildiz Taner Aydin Ufuk Sekir Bulent Hazneci Mahmut Komurcu Tunc Alp Kalyon

The aim of this study was to evaluate the alterations in eccentric evertor/concentric invertor strength ratio and their importance in the chronically unstable ankle. Eight patients with chronic ankle instability (CAI) and nine healthy individuals participated in this study. Isokinetic concentric and eccentric invertor and evertor muscle strength measurement was carried out at an angular velocit...

Journal: :Journal of applied physiology 2004
S Parikh D L Morgan J E Gregory U Proske

Subjecting a muscle to a series of eccentric contractions in which the contracting muscle is lengthened results in a number of changes in its mechanical properties. These include a fall in isometric tension that is particularly pronounced during low-frequency stimulation, a phenomenon known as low-frequency depression (LFD). Reports of LFD have not taken into account the shift in optimum length...

Journal: :Journal of sport rehabilitation 2017
Timothy L Uhl Thomas Rice Brianna Papotto Timothy A Butterfield

CONTEXT The role of the rotator cuff is to provide dynamic stability to the glenohumeral joint. Human and animal studies have identified sarcomerogenesis as an outcome of eccentric training indicated by more torque generation with the muscle in a lengthened position. OBJECTIVE The authors hypothesized that a home-based eccentric-exercise program could increase the shoulder external rotators' ...

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

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

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