نتایج جستجو برای: tannenbaum

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

Journal: :J. Nonlinear Science 2009
Yann Brenier

We establish a connection between optimal transport theory (see Villani in Topics in optimal transportation. Graduate studies in mathematics, vol. 58, AMS, Providence, 2003, for instance) and classical convection theory for geophysical flows (Pedlosky, in Geophysical fluid dynamics, Springer, New York, 1979). Our starting point is the model designed few years ago by Angenent, Haker, and Tannenb...

2014
Nicole M. Stephens Sarah S. M. Townsend

In the target article, Kraus, Tan, and Tannenbaum identify a key feature of the psychological experience of social class—perception of one’s rank vis-à-vis others. This rank-based perspective, which reveals the systematic influence of rank on psychological functioning, makes an important contribution to current and future theories of social class. Drawing out the significance of rank brings soc...

1998
WEIYONG YAN

In this note, the combined sensitivity and gain margin problem for SlSO linear systems is formulated and solved using a complex function interpolation technique. i t is proved that this problem always has a real rational solution provided it is solvable in the complex irrational sense. The sensitivity minimization problem subject to a gain margin constraint and its dual problem are also conside...

2000
Mark Steyvers Richard M. Shiffrin Douglas L. Nelson

Many memory models represent aspects of words such as meaning by vectors of feature values, such that words with similar meanings are placed in similar regions of the semantic space whose dimensions are defined by the vector positions. Methods for constructing such spaces include those based on scaling similarity ratings for pairs of words, and those based on the analysis of co-occurrence stati...

2007
CHING-HUNG HSU Steven R. Tannenbaum Gerald N. Wogan John E. Essigmann

Exposure to chemical carcinogens is believed to be an important etiological factor in human cancer. Carcinogen-DNA adducts are considered to represent the initiating events leading to cancer. This dissertation was undertaken to determine the DNA adduct formation by cyclopenta[cd]pyrene (CPP), a ubiquitous environmental carcinogen, in vitro and in mice. Calf thymus DNA was reacted in vitro with ...

2017
Massimo Cristofanilli

The recognition of the existence of an aggressive, lethal subtype of breast cancer known as inflammatory breast cancer (IBC) dates back to 1924, when the first comprehensive assessment of IBC, based on a series of 28 patients, was presented by Lee and Tannenbaum.[1] However, the disease is rare, accounting for approximately 2.5% of all newly diagnosed breast cancers in the United States,[2] and...

2013
KEITH M. KILTY Keith M. Kilty

This study was a replication and extension of an earlier one (Kilty, 1967), which compared the unidimensional (affect only) and the multidimensional (affect, cognition, and behavioral intentions) models of attitude structure, by using the implicative meaning (IM) procedure. According to the multidimensional model, this instrument is a measure of attitudinal cognition. The unidimensional model m...

2013
Joey T. Cheng Jessica L. Tracy

As Kraus, Tan, and Tannenbaum compellingly argued in their thoughtful target article, there is little doubt that social class has a pervasive influence on human cognition. Here, we build on their article by examining how and why wealth and signals of wealth influence rank dynamics. In our view, a comprehensive account of the impact of social class on psychological functioning must address not o...

Journal: :IDrugs : the investigational drugs journal 2007
Sarah Filson Sian Kneller Liza Sovran

Deadline: November 12, 1996 Further Information: AACR Office Public Ledger Building. Suite 816#{149} 150 S. Independence Mall West Philadelphia, PA 191063483 . TELEPHONE: (215) 440-9300 FAX: (215) 440-9313. Email: aacr@aol.com . For up-to-date information visit the AACR Website at http:llwww.aacr.org Cancer Epidemiology Biomarkers & Prevention An Official Journal of the American Association for...

Journal: :British medical journal 1984
M R Judge O B Eden P O'Neill

7 Assal JP, Aoki TT, Manzano FM, Kozak GP. Metabolic effects of sodium bicarbonate in the management of diabetic ketoacidosis. Diabetes 1974;23 :405-11. 8 Bureau MA, Begin R, Berthianne Y, Shapcott D, Khoury K, Gagnon N. Cerebral hypoxia from bicarbonate infusion in diabetic acidosis. J Pediatr 1980;96: 968-73. 9 Nattrass M, Hale PJ. Clinical aspects of diabetic ketoacidosis. In: Nattrass M, Sa...

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

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

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