نتایج جستجو برای: heterogeneous spots

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

2017
Xuedong Liang Canmian Liu Zhi Li

In connection with the sustainable development of scenic spots, this paper, with consideration of resource conditions, economic benefits, auxiliary industry scale and ecological environment, establishes a comprehensive measurement model of the sustainable capacity of scenic spots; optimizes the index system by principal components analysis to extract principal components; assigns the weight of ...

Journal: :Archives of disease in childhood 2002
A J Downes D S Crossland A F Mellon

AIMS To determine the prevalence of petechial spots in well babies. METHODS A total of 116 babies under the age of 12 months were fully examined at child health surveillance clinics. The number and site of petechiae were recorded together with details of possible causes. RESULTS A total of 27.6% of babies had one or more petechiae, 8.6% had two or more petechiae, and 2.6% had more than two....

Journal: :علوم گیاهان زراعی ایران 0
محبوبه حاجی عباسی دانشجوی سابق کارشناسی ارشد پردیس کشاورزی ومنابع طبیعی دانشگاه تهران، کرج رضا توکل افشاری استاد پردیس کشاورزی ومنابع طبیعی دانشگاه تهران، کرج هوشنگ علیزاده استادیار پردیس کشاورزی ومنابع طبیعی دانشگاه تهران، کرج

to better understand seed dormancy breaking of bread wheat (triticum aestivum l.rl4137), we examined protein synthesis in dormant and after-ripened seeds.we used six treatments including dormant seed, dormant seed that were subjected to gibberllic acid (ga3) for 10 hours, dormant seed with one, three and six weeks of after-ripening and finally six weeks after-ripened seed subjected to abscisc a...

Journal: :Applied bioinformatics 2005
Naomi Altman

INTRODUCTION Microarray experiments often have complex designs that include sample pooling, biological and technical replication, sample pairing and dye-swapping. This article demonstrates how statistical modelling can illuminate issues in the design and analysis of microarray experiments, and this information can then be used to plan effective studies. METHODS A very detailed statistical mod...

2001
Zhishun She

A method of combining optical skin images obtained at different illumination angles is proposed to reduce the effect of specular reflection in normal white light clinical skin images in order to avoid optical interference with the analysis of skin line pattern. A weighted average image with weights determined by independent component analysis of the images shows a demonstrable reduction in the ...

2015
Ji Seok Kim Chan Hee Nam Jee Young Kim Ji Won Gye Seung Phil Hong Myung Hwa Kim Byung Cheol Park

Received January 28, 2014, Accepted for publication March 3, 2014 Corresponding author: Byung Cheol Park, Department of Dermatology, Dankook University Hospital, 201 Manghyang-ro, Dongnam-gu, Cheonan 330-715, Korea. Tel: 82-41-550-3926, Fax: 82-41-552-7541, E-mail: shinam73@hotmail.com This is an Open Access article distributed under the terms of the Creative Commons Attribution Non-Commercial ...

Journal: :Journal of cutaneous laser therapy 2000
P Bjerring K Christiansen

OBJECTIVE The purpose of this clinical study was to evaluate the effectiveness of an intense pulsed light (IPL) irradiator system for the treatment of benign pigmented lesions. MATERIALS AND METHODS A total of 18 patients with lentigo solaris and eight patients with melanocytic nevi were treated once with an IPL system. After 2 months, the effect was evaluated on close-up photographs. RESUL...

1998
R C Atkinson J Dunlop

The migration of UMTS carrier frequencies to the 2 GHz band has stimulated interest in radio coverage in urban environments. This paper examines the problem of poor signal quality close to buildings. It uses simulation based on approximate propagation models in a “generic” urban environment to estimate the relationship between size of coverage black spots and distance from the serving BS. Consi...

Journal: :Environmental health : a global access science source 2016
Christine T Cowie Ding Ding Margaret I Rolfe Darren J Mayne Bin Jalaludin Adrian Bauman Geoffrey G Morgan

BACKGROUND Planning and transport agencies play a vital role in influencing the design of townscapes, travel modes and travel behaviors, which in turn impact on the walkability of neighbourhoods and residents' physical activity opportunities. Optimising neighbourhood walkability is desirable in built environments, however, the population health benefits of walkability may be offset by increased...

2008
Yao-Tien Wang Chung-Ming Ou

In this paper, adaptive channel management approach fuzzy neural networks in heterogeneous wireless networks (ACM-FNN) is presented to efficient resource allocation, and admission control schemes are needed to guarantee quality-of-service (QoS) for differentiated services. The channel management in a two-tier such as micro cell or macro cell wireless networks. Effective reliability and efficien...

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

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

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