نتایج جستجو برای: straight belled

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

Journal: :The Hematologist 2019

Journal: :Microbe Magazine 2006

Journal: :Californian Journal of Health Promotion 2004

2009
Marwan Al-Jubeh Mashhood Ishaque Kristóf Rédei Diane L. Souvaine Csaba D. Tóth

It is shown that if a planar straight line graph (PSLG) with n vertices in general position in the plane can be augmented to a 3-edge-connected PSLG, then 2n−2 new edges are enough for the augmentation. This bound is tight: there are PSLGs with n ≥ 4 vertices such that any augmentation to a 3-edge-connected PSLG requires 2n− 2 new edges.

Journal: :Eur. J. Comb. 2008
Csaba D. Tóth

It is shown that every connected planar straight line graph with n ≥ 3 vertices has an embedding preserving augmentation to a 2-edge connected planar straight line graph with at most b(2n − 2)/3c new edges. It is also shown that every planar straight line tree with n ≥ 3 vertices has an embedding preserving augmentation to a 2-edge connected planar topological graph by adding at most bn/2c edge...

Journal: :British heart journal 1983
W W Chen F L Chan P H Wong J S Chow

Familial prevalence of mitral valve prolapse in a Chinese population was determined in 22 propositi of whom 10 had straight back (group A), three had abnormally high metacarpal index (group B), and nine had neither (group C). Of 71 (32 male and 39 female subjects) first degree relatives screened, mitral valve prolapse was found in 19 (seven male and 12 female subjects) (26.8%). The familial pre...

Journal: :galen medical journal 0
morteza oshagh associated professor, orthodontic research center, shiraz university of medical sciences, school of dentistry, department of orthodontics, shiraz shahla momeni danaei professor, orthodontic research center, shiraz university of medical sciences, school of dentistry, department of orthodontics, shiraz ahmadreza sardarian post-graduate student of orthodontics, student research committee, orthodontic research center, resident of orthodontics, shiraz university of medical sciences, department of orthodontics, shiraz abbas alipour assistant professor, mazandaran university of medical sciences, school of medicine, department of community medicine, mazandaran mehdi roeinpeykar shiraz university of medical sciences, school of dentistry, department of orthodontics, shiraz yasamin khaksar post-graduate student of pediatric dentistry, shahidsadoughi university of medical sciences, school of dentistry, department of pediatric dentistry, yazd

background and aims: one of the main goals of standard orthodontic treatment is having the roots of teeth adjacent to extraction sites parallel to each other. the purpose of this study was to compare standard edgewise and preadjusted straight wire (mbt) methods in achieving this goal. materials and methods: for comparing root parallelism, 228 maxillary quadrants and 225 mandibular quadrants of ...

2011
Daniel S. Nagin

D eterrence is based on the notion that people consciously try to avoid pain and seek pleasure. It follows that by making a choice painful enough—such as the choice of crime—individuals will choose not to engage in the act. Across society as a whole, this perspective would predict that crime rates would be lowest in those places where offending evokes the most “pain” (or costs) and highest in t...

1998
Petr Felkel

Straight skeleton (Angular Bisector Network, ABN) of a planar polygon, which can be grasped as a modi cation of a planar Voronoi diagram without parabolic arcs, has been successfully used by Oliva et al. [5] as a part of a system for three dimensional reconstruction of objects from a given set of 2D contours in parallel cross sections. The algorithm itself is used for the construction of interm...

Journal: :Discrete & Computational Geometry 2013
Nieke Aerts Stefan Felsner

A straight line triangle representation (SLTR) of a planar graph is a straight line drawing such that all the faces including the outer face have triangular shape. Such a drawing can be viewed as a tiling of a triangle using triangles with the input graph as skeletal structure. In this paper we present a characterization of graphs that have an SLTR. The charcterization is based on flat angle as...

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

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

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