نتایج جستجو برای: stulberg classification

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

Journal: :The Journal of bone and joint surgery. British volume 1999
K Daly C Bruce A Catterall

The surgical treatment of Perthes' disease by femoral or innominate osteotomy is not as effective in those over the age of eight years as it is in the younger child. This has prompted the search for other types of management in those who are older. The preliminary results of the use of a lateral shelf acetabuloplasty for such cases have shown encouraging results at two years. The concern with s...

Journal: :international journal of group theory 2015
alexey stepanov

the present note arises from the author's talk at the conference ``ischia group theory 2014''. for subgroups $fle n$ of a group $g$ denote by $lat(f,n)$ the set of all subgroups of $n$, containing $f$. let $d$ be a subgroup of $g$. in this note we study the lattice $ll=lat(d,g)$ and the lattice $ll'$ of subgroups of $g$, normalized by $d$. we say that $ll$ satisfies sandwich classification theo...

Journal: :مجله علمی دانشگاه علوم پزشکی رفسنجان 0
محسن رضائیان m. rezaeian استاد گروه آموزشی پزشکی اجتماعی، دانشکده پزشکی، دانشگاه علوم پزشکی رفسنجانسازمان اصلی تایید شده: دانشگاه علوم پزشکی رفسنجان (rafsanjan university of medical sciences)

سخن سردبیر editorial مجله دانشگاه علوم پزشکی رفسنجان دوره 13، دی 1393، 924-923       طبقه بندی سوء رفتارهای پژوهشی   classification of research misconduct   محسن رضائیان[1] m. rezaeian   خلافکاری های پژوهشی (research misconduct) مشتمل بر طیف وسیعی از رفتارهای بسیار مخرب تا رفتارهای کمتر مخربی را در بر می گیرد که می توان مهمترین آنها را به شرح زیر طبقه بندی نمود ]2-1[: —جعل داده ها — تحریف داده ...

ژورنال: اندیشه آماری 2010
Kheradmandnia, M, Mahmoudi, R,

This article has no abstract.

Journal: :anesthesiology and pain medicine 0
sussan soltani mohammadi department of anesthesiology, critical care and pain medicine, tehran university of medical sciences, dr shariati hospital, tehran, iran; department of anesthesiology, dr shariati hospital, tehran, iran. fax: +98-2188633039 alireza saliminia department of anesthesiology, critical care and pain medicine, tehran university of medical sciences, dr shariati hospital, tehran, iran nasim nejatifard department of anesthesiology, critical care and pain medicine, tehran university of medical sciences, dr shariati hospital, tehran, iran roxana azma department of pediatric radiology, shahid beheshti university of medical sciences, mofid children’s hospital, tehran, iran

conclusions our study revealed weak correlation between pe/e-vc and cormack-lehane grade, with 87% sensitivity and 30% specificity. therefore, we concluded that sonographic measurement criteria are not accurate in airway evaluations before anesthesia. results it was observed that correlations between the pre-epiglottic space (pe) and cormack-lehane grades i, ii, and iii were weak. correlations ...

Journal: :Gut 1969
L Blendis L Kreel R Williams

The anatomy of the coeliac axis and superior mesenteric artery was carefully defined by dissection (Michels, 1955) but this knowledge assumed major importance with the advent of selective catheterization for visualizing in detail the liver, spleen, and pancreas (Odman, 1956 and 1958). Since these initial studies selective arteriography has become a well recognized diagnostic procedure in pancre...

Journal: :The Biochemical journal 1976
N J Holness G Atfield

1. A modification of the RPC 1 system of A.D. Kelmers, G.D. Novelli & M.P. Stulberg (1965) (J. Biol. Chem. 240, 3979-3983) is described in which the support medium is a Celite of narrow range particle size treated with dichlorodimethylsilane. 2. By using this system an apparently pure preparation of tRNA Cys was isolated from baker's yeast tRNA. 3. This preparation accepted at least 60% of the ...

Journal: :international journal of information, security and systems management 0

text classification is an important research field in information retrieval and text mining. the main task in text classification is to assign text documents in predefined categories based on documents’ contents and labeled-training samples. since word detection is a difficult and time consuming task in persian language, bayesian text classifier is an appropriate approach to deal with different...

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

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

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