نتایج جستجو برای: pso dv

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

2014
Jinan Usta Rim Taleb

Domestic violence (DV) is quite prevalent and negatively impacts the health and mental wellbeing of those affected. Victims of DV are frequent users of health service, yet they are infrequently recognized. Physicians tend to treat the presenting complaints without addressing the root cause of the problem. Lack of knowledge on adequately managing cases of DV and on appropriate ways to help survi...

2013
Martins Akugbe Arasomwan Aderemi Oluyinka Adewumi

Linear decreasing inertia weight (LDIW) strategy was introduced to improve on the performance of the original particle swarm optimization (PSO). However, linear decreasing inertia weight PSO (LDIW-PSO) algorithm is known to have the shortcoming of premature convergence in solving complex (multipeak) optimization problems due to lack of enough momentum for particles to do exploitation as the alg...

2013
Yongjun Ren Jiang Xu Jin Wang Jeong-Uk Kim

Cloud storage is now an important development trend in information technology. However, information security has become an important problem to impede it for commercial application, such as data confidentiality, integrity, and availability. In this paper, we propose designated verifier provable data possession (DV-PDP). In public clouds, DV-PDP is a matter of crucial importance when the client ...

Journal: :Computers & Mathematics with Applications 2009
Pietro Cerone Sever Silvestru Dragomir

Lower and upper bounds of the μ Cebyšev functional for the RiemannStieltjes integral are given. Applications for the three point quadrature rules of functions that are n time di¤erentiable are also provided. 1. Introduction In 1975, P.R. Beesack [1] showed that, if y; v; w are real valued functions de…ned on a compact interval [a; b] ; where w is of bounded variation with total variation Wb a (...

Journal: :Japanese journal of infectious diseases 2008
Natthanej Luplertlop Dorothée Missé

Dengue hemorrhagic fever and dengue shock syndrome, the major life-threatening outcomes of severe dengue disease, are the consequence of plasma leakage in the vascular areas. We previously demonstrated that dengue virus (DV)-infected dendritic cells (DC) trigger vascular leakage through matrix metalloproteinase (MMP)-9 overproduction, however little is known concerning the consequences of direc...

Journal: :Plant physiology 1992
Y Shioi K Takamiya

The composition of chlorophyll-precursor pigments, particularly the contents of monovinyl (MV) and divinyl (DV) protochlorophyllides (Pchlides), in etiolated tissues of higher plants were determined by polyethylene-column HPLC (Y. Shioi, S. I. Beale [1987] Anal Biochem 162: 493-499), which enables the complete separation of these pigments. DV-Pchlide was ubiquitous in etiolated tissue of higher...

2016
Ameeta S. Kalokhe Rob Stephenson Mary E. Kelley Kristin L. Dunkle Anuradha Paranjape Vikram Solas Latika Karve Carlos del Rio Seema Sahay Thomas Niederkrotenthaler

The high prevalence of domestic violence (DV) among married women in India and associated negative health repercussions highlight the need for effective prevention strategies and tools to measure the efficacy of such interventions. Literature supporting differing manifestations of DV by culture underscores the need for a culturally-tailored scale to more effectively measure DV in the Indian con...

2012
Soo-hyon Phark Jérôme Borme Augusto León Vanegas Marco Corbetta Dirk Sander Jürgen Kirschner

Scanning tunneling spectroscopy (STS) was used to measure local differential conductance (dI/dV) spectra on nanometer-size graphene islands on an Ir(111) surface. Energy resolved dI/dV maps clearly show a spatial modulation, which we ascribe to a modulated local density of states due to quantum confinement. STS near graphene edges indicates a position dependence of the dI/dV signals, which sugg...

Journal: :iranian journal of mathematical chemistry 2013
m. rostami m. sohrabi-haghighat m. ghorbani

the atom-bond connectivity index of graph is a topological index proposed by estrada et al.as abc (g)  uve (g ) (du dv  2) / dudv , where the summation goes over all edges ofg, du and dv are the degrees of the terminal vertices u and v of edge uv. in the present paper,some upper bounds for the second type of atom-bond connectivity index are computed.

2003
Kalyan Veeramachaneni Thanmaya Peram Chilukuri K. Mohan Lisa Ann Osadciw

This paper presents a modification of the particle swarm optimization algorithm (PSO) intended to combat the problem of premature convergence observed in many applications of PSO. In the new algorithm, each particle is attracted towards the best previous positions visited by its neighbors, in addition to the other aspects of particle dynamics in PSO. This is accomplished by using the ratio of t...

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

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

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