Dissertationen zum Thema „Splajny“
Geben Sie eine Quelle nach APA, MLA, Chicago, Harvard und anderen Zitierweisen an
Machen Sie sich mit Top-41 Dissertationen für die Forschung zum Thema "Splajny" bekannt.
Neben jedem Werk im Literaturverzeichnis ist die Option "Zur Bibliographie hinzufügen" verfügbar. Nutzen Sie sie, wird Ihre bibliographische Angabe des gewählten Werkes nach der nötigen Zitierweise (APA, MLA, Harvard, Chicago, Vancouver usw.) automatisch gestaltet.
Sie können auch den vollen Text der wissenschaftlichen Publikation im PDF-Format herunterladen und eine Online-Annotation der Arbeit lesen, wenn die relevanten Parameter in den Metadaten verfügbar sind.
Sehen Sie die Dissertationen für verschiedene Spezialgebieten durch und erstellen Sie Ihre Bibliographie auf korrekte Weise.
Antas, Vilém. „Yield Curve Constructions“. Master's thesis, Vysoká škola ekonomická v Praze, 2016. http://www.nusl.cz/ntk/nusl-264627.
Der volle Inhalt der QuelleŠpiřík, Jan. „Modul pro generování "atomů" pro přeparametrizovanou reprezentaci signálu“. Master's thesis, Vysoké učení technické v Brně. Fakulta elektrotechniky a komunikačních technologií, 2010. http://www.nusl.cz/ntk/nusl-218234.
Der volle Inhalt der QuelleOchulo, Ikechi. „Optimalizace tvaru mazací mezery hydrodynamického ložiska“. Master's thesis, Vysoké učení technické v Brně. Fakulta strojního inženýrství, 2021. http://www.nusl.cz/ntk/nusl-451223.
Der volle Inhalt der QuelleKlimeš, Ondřej. „Komprimované vzorkování pro efektivní sledování objektu senzorovou sítí“. Master's thesis, Vysoké učení technické v Brně. Fakulta strojního inženýrství, 2019. http://www.nusl.cz/ntk/nusl-400432.
Der volle Inhalt der QuelleSayed, Hassan Adelyar. „The Complexity of Splay Trees and Skip Lists“. Thesis, University of the Western Cape, 2008. http://etd.uwc.ac.za/index.php?module=etd&action=viewtitle&id=gen8Srv25Nme4_6858_1263424080.
Der volle Inhalt der QuelleOur main results are that splay trees are faster for sorted insertion, where AVL trees are faster for random insertion. For searching, skip lists are faster than single class top-down splay trees, but two-class and multi-class top-down splay trees can behave better than skip lists.
Nesky, Amy Lynn. „Stability of Splay States in Coupled Oscillator Networks“. Thesis, Boston College, 2013. http://hdl.handle.net/2345/3022.
Der volle Inhalt der QuelleThere are countless occurrences of oscillating systems in nature. Climate cycles and planetary orbits are a few that humans experience daily. Man has also incorporated, to his benefit, oscillation into his craft; the grandfather clock, for example, can keep track of time with astounding accuracy using the period of a long pendulum. Such systems can range in complexity in a number of ways. The governing equation for a given oscillator could be as simple as a sine curve, or its motion could appear so erratic that oscillatory motion is undetectable to viewers. The number of oscillators in a system can also vary, and oscillators can be coupled; that is, oscillators can be affected by the motion of neighboring oscillators. It is this last case we wish to study. We will briefly look at the case of finitely many oscillators and then move to analyzing a model consisting of infinitely many identical oscillators. Synchrony is the simplest collective behavior. We will study a more complicated pattern called splay states in which oscillators are equally staggered in phase, i.e. phase locked such that the system will return to this pattern if it is disturbed by an arbitrarily small amount. Mathematically, this requires us to find attracting fixed points in the system. We will approximate the local behavior of our model by linearizing the system near its fixed points. We will then apply our findings to a few specific cases of such models including: uniform density, linear distribution, alpha-function pulses, and integrate-and-fire
Thesis (BS) — Boston College, 2013
Submitted to: Boston College. College of Arts and Sciences
Discipline: College Honors Program
Discipline: Mathematics
Esposito, Christopher. „Differential Sedimentation In A Mississippi River Crevasse Splay“. ScholarWorks@UNO, 2011. http://scholarworks.uno.edu/td/1308.
Der volle Inhalt der QuelleDavis, Leena. „Architecture of Deep-Marine Interchannel Deposits: Isaac Formation, Windermere Supergroup (Neoproterozoic), Southern Canadian Cordillera“. Thesis, Université d'Ottawa / University of Ottawa, 2011. http://hdl.handle.net/10393/19756.
Der volle Inhalt der QuelleKrejčík, Jan. „Funkce Sinumeriku Operate při programování CNC obráběcích strojů“. Master's thesis, Vysoké učení technické v Brně. Fakulta strojního inženýrství, 2021. http://www.nusl.cz/ntk/nusl-444266.
Der volle Inhalt der QuelleHolanda, Pedro Thiago Timbó. „SPST-Index : a self pruning splay tree index for database cracking“. reponame:Repositório Institucional da UFPR, 2017. http://hdl.handle.net/1884/46126.
Der volle Inhalt der QuelleDissertação (mestrado) - Universidade Federal do Paraná, Setor de Ciências Exatas, Programa de Pós-Graduação em Informática. Defesa: Curitiba, 24/02/2017
Inclui referências : f. 41-43
Área de concentração: Ciência da computação
Resumo: Em Database Cracking, uma coluna de banco de dados se organiza fisicamente, de maneira autônoma, em partições, um índice é então criado para otimizar o acesso a essas partições. A árvore AVL é a estrutura de dados utilizada para implementar esse índice. Contudo, em termos de cache, ela é particularmente ineficiente para consultas de intervalos, já que seus nós acessados apenas algumas vezes e os nós frequentemente acessados estão espalhados por toda a árvore. Esse trabalho apresenta a Self-Pruning Splay Tree (SPST) que é uma estrutura de dados capaz de reorganizar os dados mais e menos acessados, melhorando o tempo de acesso para as partições mais acessadas. Para cada consulta de intervalo, a SPST rotaciona para a raiz os nós que apontam para os valores do predicado da consulta e o valor médio do intervalo. Eventualmente, os nós mais acessados da árvore irão permanecer próximos a raíz, melhorando a utilização da CPU e a atividade de cache. Os nós menos acessados permanecerão próximos às folhas e serão removidos para limparmos dados que não são utilizados, diminuindo o tamanho do índice e obtendo custos de leitura e atualização menores. Palavras-chave: Database Cracking, Índice para Cracking , Árvore Splay.
Abstract: In database cracking, a database is physically self-organized into cracked partitions with cracker indices boosting the access to these partitions. The AVL Tree is the current data structure of choice to implement cracker indices. However, it is particularly cache-inefficient for range queries, because the nodes accessed only for a few times (i.e, "Cold Data") and the most accessed ones (i.e, "Hot Data") are spread all over the index. This work presents the Self-Pruning Splay Tree (SPST) data structure to index database cracking and reorganize "Hot Data" and "Cold Data" to boost the access to the cracked partitions. To every range query, the SPST rotates to the root the nodes pointing to the edges and to the middle value of the predicate interval. Eventually, the most accessed tree nodes remain close to the root improving CPU and cache activity. On the other hand, the least accessed tree nodes remain close to the leaves and are pruned to clean up unused data in order to diminish the storage footprint with significant improvements: smaller lookup/update costs. Keywords: Database Cracking, Cracker Index, Splay Tree.
Belazi, Hadi S. „Sedimentology of Middle-Upper Eocene formations, Nafoora-Augila field, Libya (SPLAJ)“. Thesis, Imperial College London, 1986. http://hdl.handle.net/10044/1/8580.
Der volle Inhalt der QuelleDlouhá, Veronika. „Daně z příjmů v účetnictví“. Master's thesis, Vysoká škola ekonomická v Praze, 2006. http://www.nusl.cz/ntk/nusl-326.
Der volle Inhalt der QuelleEtturki, S. M. „Management development and organisational effectiveness in developing countries with special reference to Libya (SPLAJ)“. Thesis, Cardiff University, 1985. http://ethos.bl.uk/OrderDetails.do?uin=uk.bl.ethos.373122.
Der volle Inhalt der QuelleNagy, Miroslav. „Vliv silniční dopravy na chemický stav vodního toku Chvalka“. Master's thesis, Česká zemědělská univerzita v Praze, 2016. http://www.nusl.cz/ntk/nusl-258661.
Der volle Inhalt der QuelleWilson, Graham. „Characterization of the Alamitos Heights Fault beneath California State University, Long Beach| A splay of the Newport-Inglewood fault zone“. Thesis, California State University, Long Beach, 2015. http://pqdtopen.proquest.com/#viewpdf?dispub=1603102.
Der volle Inhalt der QuelleA 3D seismic volume across the campus of California State University, Long Beach images the Alamitos Heights fault, a splay of the Newport-Inglewood fault zone (NIFZ). The Alamitos Heights fault is a zone that strikes approximately N55°W, dips on average 80°SW, and bounds the northeast extent of the Seal Beach oil field structure. It plays a role in the complex evolution of the Newport-Inglewood fault zone within the Los Angeles sedimentary basin, which is closely related to timing and trapping mechanisms of nearby oil fields. Its origin and development may be related to fault steps or discontinuities along the main NIFZ. Seismic evidence suggests the Alamitos Heights fault may have originated as a transtensional feature during the Miocene before transitioning to its current transpressional stress regime.
Škvarenina, Ľubomír. „Interpolace signálů pomocí NURBS křivek“. Master's thesis, Vysoké učení technické v Brně. Fakulta elektrotechniky a komunikačních technologií, 2014. http://www.nusl.cz/ntk/nusl-220618.
Der volle Inhalt der QuelleValenza, Jeffery Michael. „Redbeds of the Upper Entrada Sandstone, Central Utah: Facies Analysis and Regional Implications of Interfingered Sabkha and Fluvial Terminal Splay Sediments“. BYU ScholarsArchive, 2016. https://scholarsarchive.byu.edu/etd/6112.
Der volle Inhalt der QuelleRivers, Roger Troy. „Experimental Testing of CFRP Splays Bonded to Uniaxial Fabric“. Thesis, The University of Arizona, 2014. http://hdl.handle.net/10150/321612.
Der volle Inhalt der QuelleZhang, Yanli. „Control of Disclinations and Walls in New Types of Display Devices“. Kent State University / OhioLINK, 2005. http://rave.ohiolink.edu/etdc/view?acc_num=kent1132453741.
Der volle Inhalt der QuelleOndroušková, Jana. „Modelování NURBS křivek a ploch v projektivním prostoru“. Master's thesis, Vysoké učení technické v Brně. Fakulta strojního inženýrství, 2009. http://www.nusl.cz/ntk/nusl-228872.
Der volle Inhalt der QuelleKingston, Derek B. „Decentralized Control of Multiple UAVs for Perimeter and Target Surveillance“. BYU ScholarsArchive, 2007. https://scholarsarchive.byu.edu/etd/1174.
Der volle Inhalt der QuelleKoutníková, Pavlína. „Účetnictví a daně“. Master's thesis, Vysoká škola ekonomická v Praze, 2011. http://www.nusl.cz/ntk/nusl-85224.
Der volle Inhalt der QuelleNovák, Jiří. „Metody FFD“. Master's thesis, Vysoké učení technické v Brně. Fakulta strojního inženýrství, 2017. http://www.nusl.cz/ntk/nusl-318794.
Der volle Inhalt der QuelleMajer, Jakub. „Daň z příjmů právnických osob“. Master's thesis, Vysoká škola ekonomická v Praze, 2011. http://www.nusl.cz/ntk/nusl-114098.
Der volle Inhalt der QuelleFraněk, Pavel. „Analýza variability srdečního rytmu pomocí rekurentního diagramu“. Master's thesis, Vysoké učení technické v Brně. Fakulta elektrotechniky a komunikačních technologií, 2013. http://www.nusl.cz/ntk/nusl-220048.
Der volle Inhalt der QuelleTomek, Peter. „Approximation of Terrain Data Utilizing Splines“. Master's thesis, Vysoké učení technické v Brně. Fakulta informačních technologií, 2012. http://www.nusl.cz/ntk/nusl-236488.
Der volle Inhalt der QuelleDeserranno, Dimitri. „A Multi-Scale Finite Element Model of the Cardiac Ventricles“. Case Western Reserve University School of Graduate Studies / OhioLINK, 2006. http://rave.ohiolink.edu/etdc/view?acc_num=case1148984314.
Der volle Inhalt der QuelleAgudelo, Zambrano William Mauricio. „Imagerie sismique quantitative de la marge convergente d'Equateur-Colombie : application des méthodes tomographiques aux données de sismique réflexion multitrace et réfraction-réflexion grand-angle des campagnes SISTEUR et SALIERI“. Paris 6, 2005. https://tel.archives-ouvertes.fr/tel-00010415.
Der volle Inhalt der QuelleGulliford, Alice Rachel. „Controls on river and overbank processes in an aggradation-dominated system : Permo-Triassic Beaufort Group, South Africa“. Thesis, University of Manchester, 2014. https://www.research.manchester.ac.uk/portal/en/theses/controls-on-river-and-overbank-processes-in-an-aggradationdominated-system-permotriassic-beaufort-group-south-africa(63893677-9b23-4f07-8405-627354fb170a).html.
Der volle Inhalt der QuelleMaknickas, Ramūnas. „Kompiuterine vaizdų analize pagrįstos sistemos, skirtos galvos smegenų tyrimams, analizė ir algoritmų plėtra“. Master's thesis, Lithuanian Academic Libraries Network (LABT), 2005. http://vddb.library.lt/obj/LT-eLABa-0001:E.02~2005~D_20050523_162613-36873.
Der volle Inhalt der QuelleMandryková, Lucie. „Účetní závěrka akciových společností“. Master's thesis, Vysoká škola ekonomická v Praze, 2009. http://www.nusl.cz/ntk/nusl-11089.
Der volle Inhalt der QuelleAgudelo, William. „Imagerie sismique quantitative de la marge convergente d'Equateur-Colombie : Application des mèthodes tomographiques aux données de sismique réflexion multitrace et réfraction-réflexion grand-angle des campagnes SISTEUR et SALIERI“. Phd thesis, Université Pierre et Marie Curie - Paris VI, 2005. http://tel.archives-ouvertes.fr/tel-00010415.
Der volle Inhalt der QuellePITNER, Ondřej. „Vyhodnocení srážkových úhrnů ovlivňujících erozní splachy v lokalitě Jenín“. Master's thesis, 2009. http://www.nusl.cz/ntk/nusl-46209.
Der volle Inhalt der QuelleŠEFL, Jakub. „Vyhodnocení srážkových úhrnů ovlivňujících erozní splachy ve vybraném povodí“. Master's thesis, 2011. http://www.nusl.cz/ntk/nusl-48186.
Der volle Inhalt der QuelleFANYANGHSIN und 范揚鑫. „Splay-Tree Based Android Binder Driver“. Thesis, 2013. http://ndltd.ncl.edu.tw/handle/39996195955731743957.
Der volle Inhalt der Quelle國立中央大學
資訊工程學系在職專班
101
Smart Phones, powered by miscellaneous mobile operating systems, is getting common in our lives. This trend comes with descending of hardware cost. Most of Smart Phone devices are powered by Google Android today. In Android architecture design. The importance of IPC (Inter Process Communication)[1] takes a significant role than any other modern mobile operating system. All IPCs , including application/application, application/system service, system service/system service, happens in Android-Framework are based Binder Framework, which is a descendant of Open Binder[2]. Our assumption is that Binder Framework has locality. If replacing the Red-Black Tree[4] based node managing system by Splay-Tree[3]. The performance should be better. This papper evaluates that the performance of connectivity of IPC node generated by Android System Service has been improved. Consider the popularity of Android devices today. It may save huge amount of computing resources.
Vaňková, Barbora. „Vývoj dynamického modelu pro odhad radonové zátěže budov“. Master's thesis, 2010. http://www.nusl.cz/ntk/nusl-277055.
Der volle Inhalt der QuelleVaňková, Barbora. „Vývoj dynamického modelu pro odhad radonové zátěže budov“. Master's thesis, 2011. http://www.nusl.cz/ntk/nusl-312565.
Der volle Inhalt der QuelleOrsega, Michael Cajetan. „Sketchmate [electronic resource] : a digital drawing tool for the splay tree data structure /“. 2009. http://etd.utk.edu/2009/Spring2009Dissertations/OrsegaMichaelCajetan.pdf.
Der volle Inhalt der QuelleTitle from title page screen (viewed on Nov. 2, 2009). Thesis advisor: Bradley T. Vander Zanden. Vita. Includes bibliographical references.
Αντωνίου, Δημήτριος. „Μελέτη και ανάπτυξη αυτοοργανώμενων δομών δεδομένων“. Thesis, 2006. http://nemertes.lis.upatras.gr/jspui/handle/10889/1419.
Der volle Inhalt der Quelle-
Lai, Po-Chung, und 賴柏仲. „Transition time of Splay to Bend state in Optical Compensation Bend Mode Liquid Crystal Cell“. Thesis, 2010. http://ndltd.ncl.edu.tw/handle/51674105831011392018.
Der volle Inhalt der Quelle國立彰化師範大學
光電科技研究所
98
We investigate the transformation processes of the optically compensated bend (OCB)cell. The observed results reveal that the transformation time of the cell from the Ha state to the bend state is well below that of the cell from the Hs state to the bend state. The transformation time of the cell from the splay state to the bend state is shorter in the cell with the higher pretilt angle. The obtained results also reveal that the lifetime of the Hs state increases with increasing voltage. The lifetime of the Hs state can be modified by generating polymer networks in the cell.
Rich, Charles, und Richard C. Waters. „The Programmer's Apprentice Project: A Research Overview“. 1987. http://hdl.handle.net/1721.1/6054.
Der volle Inhalt der Quelle