نتایج جستجو برای: پژو 405

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

ژورنال: :پژوهش ادبیات معاصر جهان 2002
جاوید قیطانچی

مطالعه و بررسی چکیدهء پایان نامه های دانش آموختگان کارشناسی ارشد ادبیات انگلیسی در دو رهء زمانی 1998 تا 2000 از برخی ابعاد شکلی و موضوعی، موضوع این مقاله است. این پژو هش با استفاده از روش کتابخانه ای انجام شده، جامعهء أماری آن 120 پایان نامه است، در راستای دستیابی به اهداف این پژو هش ده جدو ل توزیع فراوانی برای پاسخگویی به سئوالات تحقیق طراحی شد که نشان می دادند، در سالهای اولیه تأسیس دانشکده ت...

2013
Jee-Seon Kim Carolyn J. Anderson Bryan Keller

Introduction ......................................................................................................... 390 Data ...................................................................................................................... 391 PIRLS ................................................................................................................ 391 Plausible Value Outcome...

2006
Martin White Judith Bush Joe Kai Raj Bhopal Judith Rankin

These include: References http://jech.bmjjournals.com/cgi/content/full/60/5/405#BIBL This article cites 19 articles, 12 of which can be accessed free at: Rapid responses http://jech.bmjjournals.com/cgi/eletter-submit/60/5/405 You can respond to this article at: service Email alerting top right corner of the article Receive free email alerts when new articles cite this article sign up in the box...

2006
Yuanzheng Yang Hsiou-Chi Liou Xiao-Hong Sun

Yuanzheng Yang, Hsiou-Chi Liou and Xiao-Hong Sun From Immunobiology and Cancer Program, Oklahoma Medical Research Foundation, 825 NE 13th Street, Oklahoma City, OK 73104; Division of Immunology, Department of Medicine, Weill Medical College of Cornell University, New York, NY 10021 Running title: Id1 activates NF-κB during TCR signaling Address correspondences to: Xiao-Hong Sun, Oklahoma Medica...

2014
Jian Xu

Cite this article: Xu J (2013) Mechanisms of Impaired Angiogenesis in Diabetes Mellitus: do Methylglyoxal and Autophagy Play a Role? J Endocrinol Diabetes Obes 1(1): 1003. Corresponding author Jian Xu, Section of Endocrinology and Diabetes, Department of Medicine, University of Oklahoma Health Sciences Center, Harold Hamm Oklahoma Diabetes Center, Oklahoma City, OK 73104, Tel: (405)271-8001; Ex...

2006
Nicklas Bonander Kristina Hedfalk Christer Larsson Petter Mostad Celia Chang Roslyn M Bill

Address: 1Department of Cell and Molecular Biology/Microbiology, Göteborg University, Box 462, 405 30 Göteborg, Sweden, 2Department of Chemistry and Bioscience/Molecular Biotechnology, Chalmers University of Technology, Box 462, 405 30 Göteborg, Sweden, 3Department of Mathematics, Chalmers University of Technology, 41296 Göteborg, Sweden, 4The Wistar Institute, 3601 Spruce Street, Philadelphia,...

2003
Mary L. Kraft Scott J. Robinson Jeffrey S. Moore

1 Department of Chemistry, University of Illinois at Urbana-Champaign. 600 South Mathews Avenue, Urbana, IL 61801, USA 2 Imaging Technology Group, The Beckman Institute for Advanced Science and Technology, University of Illinois at Urbana-Champaign. 405 North Mathews Avenue, Urbana, IL 61801, USA 3 The Beckman Institute for Advanced Science and Technology, University of Illinois at Urbana-Champ...

2015
Tai-Chieh Huang Yen-Yu Chen Chih-Chien Chu Vincent K. S. Hsiao

The laser-initiated thermal (optothermal) switching of cholesteric liquid crystals (CLCs) is characterized by using different azobenzene (Azo) derivatives and laser wavelengths. Under 405-nm laser irradiation, Azo-doped CLCs undergo phase transition from cholesteric to isotropic. No cis-to-trans photoisomerization occurs when the 405-nm laser irradiation is blocked because only a single laser i...

2017
Su Chul Jang Rossella Crescitelli Aleksander Cvjetkovic Valerio Belgrano Roger Olofsson Johanna L. Höög Karin Sundfeldt Takahiro Ochiya Raghu Kalluri Jan Lötvall

Su Chul Jang, Rossella Crescitelli, Aleksander Cvjetkovic, Valerio Belgrano, Roger Olofsson Bagge, Johanna L. Höög, Karin Sundfeldt, Takahiro Ochiya, Raghu Kalluri, Jan Lötvall Krefting Research Center, Institute of Medicine, University of Gothenburg, Gothenburg 405 30, Sweden; Codiak BioSciences Inc., Cambridge, MA 02139, USA; Department of Surgery, Institute of Clinical Sciences, Sahlgrenska ...

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

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

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