• Refine Query
  • Source
  • Publication year
  • to
  • Language
  • 608
  • 124
  • 124
  • 111
  • 71
  • 50
  • 20
  • 18
  • 17
  • 14
  • 12
  • 10
  • 8
  • 5
  • 4
  • Tagged with
  • 1389
  • 356
  • 221
  • 157
  • 156
  • 141
  • 135
  • 124
  • 123
  • 113
  • 110
  • 98
  • 95
  • 86
  • 85
  • About
  • The Global ETD Search service is a free service for researchers to find electronic theses and dissertations. This service is provided by the Networked Digital Library of Theses and Dissertations.
    Our metadata is collected from universities around the world. If you manage a university/consortium/country archive and want to be added, details can be found on the NDLTD website.
51

TechCommix: A Tool and Foundation for Rethinking and Restructuring Technical Documentation

Zeitz, Rebecca Ann 09 July 2014 (has links)
Comics is a writing style that is often written off as just something done for entertainment or design. However, there are many facets of comics that make it a suitable candidate for technical documentation. By nature, comics is a visual and universal language and, as such, is the basis for an investigation of comics within the scope of technical communication. This research investigates whether comics can be automatically generated, based on a set of predefined panel templates, for such purposes while also providing for flexibility in both content and ultimate consumption format. A within-subjects study run with over 200 participants compared comics to two of its traditional documentation style contenders, prose and step-oriented, in terms of understanding and evaluation metrics, including those related to user experience. Results indicate that comics as a documentation style can offer enhanced, more positive user experiences, albeit not being overall better than the other styles. / Master of Science
52

End-to-End Neuro-Symbolic Approaches for Event Recognition

Apriceno, Gianluca 30 October 2023 (has links)
Event detection is a critical challenge in many fields like video surveillance, social graph analysis, and multimedia processing. Furthermore, events are “structured” objects involv ing multiple components like the event type, the participants with their roles, and the atomic events in which it decomposes. Therefore, the recognition of an event is not only limited to recognize the type of the event and when it happened, but it involves solving a set of simple tasks. Exploiting background knowledge about events and their relations could then be beneficial for event detection. In the last years, neuro-symbolic integration has been proposed to merge the strengths and overcome the drawbacks of both symbolic and neural worlds. As a consequence, different neuro-symbolic frameworks, which com bine low-level perception of neural networks with a symbolic layer, encoding prior domain knowledge (usually defined in terms of logical rules), have been applied to solve different atemporal tasks. In this thesis, we want to investigate the application of the neuro-symbolic paradigm for event detection. This would also provide a better insight into the strengths and limitations of neuro-symbolic towards tasks involving time.
53

Introduction to Programming on the Nova Computer

Lam, Clement 09 1900 (has links)
One of two project reports: The other part is designated PART B: McMASTER (on-campus) PROJECT. / <p> A guide to programming the Nova computer is presented in this manual. Programming fundamentals, structured programming, testing and debugging and interrupt programming technique are also included. </p> / Thesis / Master of Engineering (MEngr)
54

A Block Structured Adaptive Solution to the Shallow Water Equations

Bhagat, Nitin 07 August 2004 (has links)
An adaptive mesh refinement algorithm for shallow water equations is presented. The algorithm uses upwind scheme that is Godunov type and which approximately solves the Riemann problem using Roe's technique. A highly accurate solution is achieved by using the adaptive mesh refinement technique of Berger and Oliger for mesh refinement algorithm. The numerical method is second-order accurate and approximately max-min preserving by using van Leer limited-slope technique. One-dimensional nesting algorithm has been implemented successfully. Numerical results on a test problem verify the second order accuracy of the algorithm. The nested grid results yield the equivalent solution to that of the corresponding fine grid solution.
55

Structured Activity Involvement and Behavior Problems: Investigation of Selection and Transactional Effects with the Use of Variable and Person-Centered Approaches

Mata, Andrea D. 03 July 2012 (has links)
No description available.
56

Comparison of Diagnostic Interviews for Children Accessing Outpatient Mental Health Services

Young, Matthew E. 26 August 2010 (has links)
No description available.
57

Functional and performance analysis of discrete event network simulation tools

Musa, Ahmad S., Awan, Irfan U. 31 March 2022 (has links)
Yes / Researchers have used the simulation technique to develop new networks and test, modify, and optimize existing ones. The scientific community has developed a wide range of network simulators to fulfil these objectives and facilitate this creative process. However, selecting a suitable simulator appropriate for a given purpose requires a comprehensive study of network simulators. The current literature on network simulators has limitations. Limited simulators have been included in the studies with functional and performance criteria appropriate for comparison not been considered, and a reasonable selection model for selecting the suitable simulator has not been presented. To overcome these limitations, we studied twenty-three existing network simulators with classifications, additional comparison parameters, system limitations, and comparisons using several criteria. / This work was supported by the Petroleum Technology Development Fund (PTDF) Nigeria with grant number PTDF/ED/PHD/MAS/179/17.
58

Optical Analysis and Opto-Mechanical Design for Miniaturized Laser Illumination Module in 3D Areal Mapper

Luo, Ming 25 May 2000 (has links)
A miniaturized spatial light modulator (SLM)-based structured-light illumination module with optical fiber input is designed to generate a coded 256 x 256 spots pattern for 3-D areal mapping applications. The projector uses the light from a He-Ne laser coupled to a polarization-maintaining (PM) fiber to illuminate a specially made hologram so that four virtual point sources are regenerated. The interference pattern of the four sources are filtered and modulated by an SLM. The output intensity can thus be encoded to form any arbitrary pattern through the electronic input applied to the SLM with a high speed. In this thesis, a complete optical diffraction analysis of the system is presented to provide guidelines for the optimal design of the system parameters. Through the theoretical analysis for square beam array generation, the important parameters for fabricating a hologram are given. The final system optical design and arrangement based on optical analysis are described. The detailed opto-mechanical construction of the LIM and the associated alignment, the computer simulation and the preliminary test results of the developed LIM are also provided. / Master of Science
59

Automated Conversion of Structured Fortran 77 Ccode Into Object-Oriented C++ Code

Kothapalli, Malini 16 January 2004 (has links)
The maintenance of legacy software systems that were developed using a procedural design approach is becoming increasingly expensive. The procedural approach is often ill suited for complex systems that need to integrate with other codes. Furthermore, these legacy systems are usually written in FORTRAN, for which there is increasingly less personnel available compared to, say, C++. While it would be desirable to convert these legacy systems into object-oriented codes described in C++, such a conversion process is nontrivial. Currently, the structural design must be manually examined, interpreted, and converted into an object-oriented design described in an object-oriented language. Therefore, the conversion process is likely to introduce numerous new inconsistencies and errors, which degrades the software's quality and increases its costs. The preferred solution would be to automate this conversion process. Automation would promote consistency by eliminating the manual variations in interpretation and implementation. It would therefore maximize the likelihood that the converted code does not introduce new errors relative to the original code. The work presented here automates the conversion process from procedural design described in the FORTRAN77 language into object-oriented design described in the C++ language. It demonstrates the extraction of object-oriented elements using FORTRAN common block structures and FORTRAN subroutine and function-calling hierarchies. The result is a consistent, first-cut converted design, which enhances cohesion within classes and reduces coupling between classes. This result is described in the contemporary, broadly used computer language C++, which integrates with adjacent modules that might still remain procedural and described in FORTRAN. / Master of Science
60

Quantificação de glicose intra e extra-celular por meio de biossensores micro e nanoestruturados / Intra and extra-cellular glucose quantification by micro-nano-structured biosensors

Nascimento, Raphael Aparecido Sanches 07 August 2015 (has links)
Segundo dados da Organização Mundial de Saúde, até o ano de 2030 a diabetes será a sétima enfermidade causadora de morte no mundo. A diabetes se caracteriza pela variação do nível de glicose no sangue dada ingestão de alimentos ou realização de certas tarefas. Além disso, já é sabido pela comunidade científica atual que células cancerígenas possuem metabolismo diferente quando comparadas a células normais, consumindo uma maior quantidade de açúcar devido a essa anormalidade. No presente trabalho serão apresentados, basicamente, dois tipos de biossensores que possuem grande potencial para tornarem-se monitores contínuos de glicose. Ambos os biossensores utilizam a enzima glicose oxidase como catalisador específico da reação de oxidação do carboidrato. O primeiro apresenta estrutura em escala micrométrica, tem por objetivo a quantificação de glicose em solução em ambiente extracelular e se baseia no sistema EGFET (Extended Gate Field Effect Transistor) com substrato de Fluorine Tin Oxide (FTO). Além do mais, foram utilizados dois protocolos de imobilização da glicose oxidase: quitosana (com uma janela de detecção de 1 a 5mM de glicose) e glutaraldeído (com janela de detecção de 0 a 15 mM de glicose). O segundo apresenta estrutura em escala nanométrica, tem por objetivo a quantificação de glicose em ambiente intracelular e baseia-se no sistema de nanopipetas de quartzo. Com esse dispositivo foi possível estipular a concentração de glicose livre dentro de três linhas de células distintas: Fibroblastos humanos entre 0 e 2.8mM; MCF-7 maior que 4.7 mM; MDA-MB-231entre 3.6 e 4.5 mM. / According to the World Health Organization, until 2030 diabetes will be the 7th cause of death worldwide. This disease is characterized by variation on blood glucose levels due to ingestion of specific food and tasks performing. Moreover, it is already known that cancer cells have a different metabolism when compared to normal cells and these abnormal cells have a higher sugar intake due to this abnormality. This work will present, basically, two types of biosensors with great potential to become continuous glucose monitors. Both biosensors use the enzyme glucose oxidase as carbohydrate oxidation catalyzer. The first one presents a micro-metric structure and its goal is to quantify glucose concentration in an extracellular solution. This device is based in EGFET (Extended Gate Field Effect Transistor) system and uses FTO as substrate. Furthermore, two immobilization protocols were used to fix the enzyme to the FTO: chitosan (with final range of 1~5mM of glucose) and glutaraldehyde (with final range of 0~15mM of glucose). The second is a nano-structured biosensor based on nanopipette system and its goal is to quantify intracellular glucose concentration. With this device was possible to stipulate free glucose molecules inside different cell lines: between 0 and 2.8mM for human Fibroblasts; greater than 4.7 mM for MCF-7; and between 3.6 and 4.5 mM for MDA-MB-231.

Page generated in 0.0342 seconds