نتایج جستجو برای: milk clotting enzyme mce

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

2007
Ariane Herbulot Sylvain Boltz Eric Debreuve Michel Barlaud Gilles Aubert

This paper deals with video segmentation based on motion and spatial information. Classically, the nucleus of the motion term is the motion compensation error (MCE) between two consecutive frames. Defining a motion-based energy as the integral of a function of the MCE over the object domain implicitly results in making an assumption on the MCE distribution: Gaussian for the square function, Lap...

Journal: :Clinical chemistry 1982
N G Anderson M T Powers S L Tollaksen

Traditionally, human milk proteins are identified largely by reference to bovine milk. Hence, to identify the major proteins in human milk, we subjected human and bovine milk, in parallel, to high-resolution two-dimensional electrophoresis. Isoelectric precipitation at pH 4.6 was our criterion for distinguishing whey proteins from those of the casein complex. The alpha- and beta-caseins were id...

2017
Jayavel Arumugam Arun Srinivasa

Realistic description of patient-specific mechanical properties of clotting dynamics presents a major challenge. Available patient-specific data falls short of robustly characterizing myriads of complex dynamic interactions that happen during clotting. We propose a simplified switching model for a key part of the coagulation cascade that describes dynamics of just four variables. The model corr...

Journal: :Heart 1999
D Czitrom D Karila-Cohen E Brochet J M Juliard M Faraggi M C Aumont P Assayag P G Steg

OBJECTIVE To examine the relation between the initial microvascular perfusion pattern, as assessed by intracoronary myocardial contrast echocardiography (MCE), immediately after restoration of TIMI (thrombolysis in myocardial infarction) (TIMI) grade 3 flow during acute myocardial infarction, and the extent and timing of functional recovery in the area at risk. SETTING Referral centre for int...

2008
Jarunee Hongrapipat Pavla Kopečková Jihua Liu Sompol Prakongpan Jindřich Kopeček

The biological activities of sequential combinations of anticancer drugs, SOS thiophene (SOS) and mesochlorin e 6 monoethylenediamine (Mce 6), in the form of free drugs, nontargeted N-(2-hydroxypropyl)methacrylamide (HPMA) copolymer-drug conjugates, P-GFLG-Mce 6 and P-GFLG-SOS (P is the HPMA copolymer backbone and GFLG is the glycylphenylalanylleucylglycine spacer), and Fab'-targeted HPMA copol...

Journal: :Journal of cardiovascular ultrasound 2010
Soo-Jin Kang Duk-Hyun Kang Jong-Min Song Jae-Kwan Song Seong-Wook Park Seung-Jung Park

BACKGROUND It remains unclear whether myocardial contrast echocardiography (MCE) is as accurate as myocardial perfusion imaging with technetium-99m sestamibi (MPI) for the diagnosis of acute coronary syndrome (ACS). We sought to directly compare the diagnostic accuracy of MCE with resting MPI in a head-to-head fashion. METHODS We prospectively enrolled 98 consecutive patients (mean age; 59+/-...

Journal: :Analytical sciences : the international journal of the Japan Society for Analytical Chemistry 2008
Kenji Sueyoshi Fumihiko Kitagawa Koji Otsuka

Microchip electrophoresis (MCE) has been advanced remarkably by the applications of several separation modes and the integration with several chemical operations on a single planer substrate. MCE shows superior analytical performance, e.g., high-speed analysis, high resolution, low consumption of reagents, and so on, whereas low-concentration sensitivity is still one of the major problems. To o...

Journal: :Circulation journal : official journal of the Japanese Circulation Society 2012
Jung-Hyun Choi Jong-Ho Nam Jang-Won Son Sang-Hee Lee Ung Kim Jong-Seon Park Dong-Gu Shin Young-Jo Kim Geu-Ru Hong

BACKGROUND The purpose of this study was to investigate the clinical usefulness of myocardial contrast echocardiography (MCE) to distinguish stress-induced cardiomyopathy (SCMP) from acute myocardial infarction (AMI) in the emergency department (ED). METHODS AND RESULTS We investigated 51 patients (62±13 years, 29 women) who had suspected SCMP in the ED with acute chest pain and showed apical...

Journal: :JACC. Cardiovascular imaging 2010
J Ranjit Arnold Theodoros D Karamitsos Tammy J Pegg Jane M Francis Robert Olszewski Nick Searle Roxy Senior Stefan Neubauer Harald Becher Joseph B Selvanayagam

OBJECTIVES To evaluate the accuracy of adenosine myocardial contrast echocardiography (MCE) in diagnosing coronary artery disease (CAD). BACKGROUND Adenosine stress echocardiography is not routinely used in the assessment of CAD. Since ultrasound microbubble contrast agents enable improved wall motion analysis and simultaneous assessment of myocardial perfusion, we sought to evaluate the diag...

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

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

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