نتایج جستجو برای: 525 e

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

Journal: :Journal of diabetes science and technology 2013
Abha Choudhary Zoltan Antal

Corresponding Author: Zoltan Antal, M.D., 525 E. 68th St., Box 103, New York, NY 10065; email address zoa9003@med.cornell.edu The childhood obesity epidemic has been accompanied by an increase in the prevalence of type 2 diabetes mellitus, with impaired glucose tolerance (IGT) reported in 10–27% of obese children and adolescents across the globe.1,2 The natural history of impaired fasting gluco...

2005
Ildar R. Gabitov Robert Indik Natalia M. Litchinitser Andrei I. Maimistov Vladimir M. Shalaev Joshua E. Soneson

Ildar R. Gabitov, Robert Indik, Natalia M. Litchinitser, Andrei I. Maimistov, Vladimir M. Shalaev, Joshua E. Soneson : Mathematics Department, University of Arizona, 617 N. Santa Rita Avenue, Tucson, AZ 85721 USA : Theoretical Division, Los Alamos National Laboratory, Los Alamos, NM 87545 USA : Department of Electrical Engineering and Computer Science, University of Michigan, 525 East Universit...

2015
Steven G. Rogelberg

Acton, B., 618 Adams, L., 671 Agnew, C. R., 326 Aksoy-Burkert, F., 7 Albon, R., 526 Allen, J. A., 3–6, 7, 8, 9, 10, 12–17, 49–50, 59, 70, 158–159, 165, 307, 310–311, 373, 382, 523, 620, 738, 740 Allison, B., 9 Ambady, N., 461 Amrhein, P., 417, 424 Anderson, A. H., 133, 134, 135, 664–665 Anderson, N., 525, 589 Andriessen, J. H. E., 668 Anson, R., 51 Arafeh, J. M., 624 Argote, L., 365 Arrow, H., ...

Journal: :JACIII 2013
Yusuke Tamura Mami Egawa Shiro Yano Takaki Maeda Motoichiro Kato Hajime Asama

∗1Faculty of Science and Engineering, Chuo University 1-13-27 Kasuga, Bunkyo-ku, Tokyo 112-8551, Japan E-mail: tamura@mech.chuo-u.ac.jp ∗2Recruit Marketing Partners, Co., Ltd. 1-9-2 Marunouchi, Chiyoda-ku, Tokyo 100-6640, Japan ∗3Research Organization of Science and Technology, Ritsumeikan University 1-1-1 Nojihigashi, Kusatsu-shi, Shiga 525-8577, Japan ∗4Department of Neuropsychiatry, Keio Uni...

2016
Giovanni Rolla

The aim of this paper is two-fold: first, it is intended to articulate theses that are often assessed independently, thus showing that a strong version of epistemological disjunctivism about perceptual knowledge implies a transformative conception of rationality. This entails that individuals in skeptical scenarios could not entertain rational thoughts about their kriterion, Belo Horizonte, no ...

2016
Kenshi Saho

Citation: Saho K (2016) Design of Accurate α-β Tracker based on Steady-State Performance Index. Int J Signal Process Anal 1:001 Copyright: © 2016 Saho K. This is an open-access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. *Corres...

2016
Eli Finkel Stephanie B. Richman Richard S. Pond STEPHANIE B. RICHMAN NATHAN DEWALL MADOKA KUMASHIRO ERICA B. SLOTTER LAURA B. LUCHIES

525 © 2016 Guilford Publications, Inc. The first two authors contributed equally to this work. This research would not have been possible without funding from grants from NSF (BCS-11041118 to Nathan DeWall; BCS-719780 to Eli Finkel and BCS-0132398 to Caryl Rusbult) and Templeton Foundation (Grant 5158) to Caryl Rusbult. Address correspondence to Stephanie B. Richman, Department of Psychology, W...

Journal: :Monthly Notices of the Royal Astronomical Society 1953

Journal: :The Journal of the Institute of Television Engineers of Japan 1990

2003
Daniele Moroni Titus S. van Erp Peter G. Bolhuis

We briefly review simulation schemes for the investigation of rare transitions and we resume the recently introduced Transition Interface Sampling, a method in which the computation of rate constants is recast into the computation of fluxes through interfaces dividing the reactant and product state. PACS: 82.20.Db, 82.20.Sb keywords: Rare events; Rate constants; Transition Path Sampling. ∗Corre...

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

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

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