نتایج جستجو برای: ground complexity

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

Journal: :international journal of environmental research 2013
m.r. masnavi

the notion of sustainable development has rapidly gained considerable attention since the lastdecades of the twentieth century. it has become a locus for global paradigm shift on environment and development issues particularly after rio conference in 1992. the comparative analysis of agenda 21 and major un documents, mdg, and rio+20 as well as some major sources are made to provide a context fo...

Complexity is one of the most important issues of any production planning. The increase in complexity of production planning can cause inconsistency between a production plan and an actual outcome. The complexity generally can be divided in two categories, the static complexity and the dynamic complexity, which can be computed using the ant ropy formula. The formula considers the probability of...

Journal: :international journal of health policy and management 2016
martin mckee david stuckler

while many international organisations have independent evaluations, including the international monetary fund (imf) and world health organization (who), uniquely the world bank in its 2015 world development report sought to ascertain the potential biases that influence how its staff interpret evidence and influence policy. here, we describe the world bank’s study design, including experiments ...

Journal: :journal of advances in medical education and professionalism 0
alireza yousefi department of medical education, medical education research center, isfahan university of medical sciences, isfahan, iran leila bazrafkan medical education research center, isfahan university of medical sciences, isfahan, iran nikoo yamani department of medical education, medical education research center, isfahan university of medical sciences, isfahan, iran

introduction: the supervision of academic theses at the universities of medical sciences is one of the most important issues with several challenges. the aim of the present study is to discover the nature of problems and challenges of thesis supervision in iranian universities of medical sciences. methods: the study was conducted with a qualitative method using conventional content analysis app...

Journal: :transactions on combinatorics 2013
s. saqaeeyan esmaeil mollaahmadi ali dehghan

the colorful paths and rainbow paths have been considered by severalauthors.a colorful directed path in a digraph $g$ is a directed path with $chi(g)$ vertices whose colors are different. a $v$-colorful directed path is such a directed path, starting from $v$. we prove that for a given $3$-regular triangle-free digraph $g$ determining whether there is a proper $chi(g)$-coloring of $g$such that ...

2008
Le Lu Adrian Barbu Matthias Wolf Jianming Liang Luca Bogoni Marcos Salganicoff Dorin Comaniciu

Object detection and recognition has achieved a significant progress in recent years. However robust 3D object detection and segmentation in noisy 3D data volumes remains a challenging problem. Localizing an object generally requires its spatial configuration (i.e., pose, size) being aligned with the trained object model, while estimation of an object’s spatial configuration is only valid at lo...

Journal: :Comp. Applic. in Engineering Education 2006
Esmaeil Fatehifar Ali Elkamel M. Taheri

In this article, a MATLAB program for a three-dimensional simulation of multipollutants (CO, NOx, SO2, and TH) dispersion from an industrial stack using a Multiple Cell Model is presented. The program verification was conducted by checking the simulation results against experimental data and Gaussian Model and better agreements were obtained in comparison with the Gaussian model. The effects of...

2003
Enrique J. Baran

Bismutine, BiH3, is the least stable of the group15 trihydrides. F. Paneth first detected it in minute traces in 1918 using a radiochemical technique involving Bi2Mg3 [1]. The best preparation method seems to be the one proposed by Amberger in 1961, based on the disproportionation of CH3BiH2 at −45 ◦C[̃2]. This relatively complex synthesis has recently been successfully reproduced and allowed to...

Journal: :Inf. Sci. 2018
Xiaoyan Lu Konstantin Kuzmin Mingming Chen Boleslaw K. Szymanski

Modularity maximization is one of the state-of-the-art methods for community detection that has gained popularity in the last decade. Yet it suffers from the resolution limit problem by preferring under certain conditions large communities over small ones. To solve this problem, we propose to expand the meaning of the edges that are currently used to indicate propensity of nodes for sharing the...

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

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

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