129 resultados para SLD


Relevância:

10.00% 10.00%

Publicador:

Resumo:

This paper presents some fundamental properties of independent and-parallelism and extends its applicability by enlarging the class of goals eligible for parallel execution. A simple model of (independent) and-parallel execution is proposed and issues of correctness and efficiency discussed in the light of this model. Two conditions, "strict" and "non-strict" independence, are defined and then proved sufficient to ensure correctness and efñciency of parallel execution: if goals which meet these conditions are executed in parallel the solutions obtained are the same as those produced by standard sequential execution. Also, in absence of failure, the parallel proof procedure does not genérate any additional work (with respect to standard SLD-resolution) while the actual execution time is reduced. Finally, in case of failure of any of the goals no slow down will occur. For strict independence the results are shown to hold independently of whether the parallel goals execute in the same environment or in sepárate environments. In addition, a formal basis is given for the automatic compile-time generation of independent and-parallelism: compile-time conditions to efficiently check goal independence at run-time are proposed and proved sufficient. Also, rules are given for constructing simpler conditions if information regarding the binding context of the goals to be executed in parallel is available to the compiler.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

Dentro de los paradigmas de programación en el mundo de la informática tenemos la "Programación Lógica'', cuyo principal exponente es el lenguaje Prolog. Los programas Prolog se componen de un conjunto de predicados, cada uno de ellos definido en base a reglas que aportan un elevado nivel de abstracción y declaratividad al programador. Sin embargo, las formulación con reglas implica, frecuentemente, que un predicado se recompute varias veces para la misma consulta y además, Prolog utiliza un orden fijo para evaluar reglas y objetivos (evaluación SLD) que puede entrar en "bucles infinitos'' cuando ejecuta reglas recursivas declarativamente correctas. Estas limitaciones son atacadas de raiz por la tabulación, que se basa en "recordar'' en una tabla las llamadas realizadas y sus soluciones. Así, en caso de repetir una llamada tendríamos ya disponibles sus soluciones y evitamos la recomputación. También evita "bucles infinitos'' ya que las llamadas que los generan son suspendidas, quedando a la espera de que se computen soluciones para las mismas. La implementación de la tabulación no es sencilla. En particular, necesita de tres operaciones que no pueden ser ejecutadas en tiempo constante simultáneamente. Dichas operaciones son: suspensión de llamadas, relanzamiento de llamadas y {acceso a variables. La primera parte de la tesis compara tres implementaciones de tabulación sobre Ciao, cada una de las cuales penaliza una de estas operaciones. Por tanto, cada solución tiene sus ventajas y sus inconvenientes y se comportan mejor o peor dependiendo del programa ejecutado. La segunda parte de la tesis mejora la funcionalidad de la tabulación para combinarla con restricciones y también para evitar computaciones innecesarias. La programación con restricciones permite la resolución de ecuaciones como medio de programar, mecanismo altamente declarativo. Hemos desarrollado un framework para combinar la tabulación con las restricciones, priorizando objetivos como la flexibilidad, la eficiencia y la generalidad de nuestra solución, obteniendo una sinergia entre ambas técnicas que puede ser aplicada en numerosas aplicaciones. Por otra parte, un aspecto fundamental de la tabulación hace referencia al momento en que se retornan las soluciones de una llamada tabulada. Local evaluation devuelve soluciones cuando todas las soluciones de la llamada tabulada han sido computadas. Por contra, batched evaluation devuelve las soluciones una a una conforme van siendo computadas, por lo que se adapta mejor a problemas donde no nos interesa encontrar todas las soluciones. Sin embargo, su consumo de memoria es exponencialmente peor que el de local evaluation. La tesis presenta swapping evaluation, que devuelve soluciones tan pronto como son computadas pero con un consumo de memoria similar a la de local evaluation. Además, se implementan operadores de poda, once/1, para descartar la búsqueda de soluciones alternativas cuando encontramos la solución deseada. Por último, Prolog adopta con relativa facilidad soluciones para paralelismo gracias a su flexibilidad en el control de la ejecución y a que sus asignaciones son lógicas. La tercera parte de la tesis extiende el paralelismo conjuntivo de Ciao para trabajar con programas no deterministas, lo que presenta dos problemas principales: los objetivos atrapados y la recomputación de objetivos. Las soluciones clásicas para los objetivos atrapados rompían muchos invariantes de la ejecución Prolog, siendo soluciones difíciles de mantener y de extender, que la experiencia nos dice que han caído en desuso. Nosotros proponemos una solución modular (basada en la implementación de swapping evaluation), localizada y que no rompe los invariantes de la ejecución Prolog, pero que mantiene un alto rendimiento de la ejecución paralela. En referencia a la recomputación de objetivos paralelos en presencia de no determinismo hemos adaptado ténicas derivadas de la tabulación para memorizar computaciones de estos objetivos y evitar su recomputación.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

This paper describes the experiences using remote laboratories for thorough analysis of a thermal system, including disturbances. Remote laboratories for education in subjects of control, is a common resorted method, used by universities. This method is applied to offer a flexible service in schedules so as to obtain greater and better results of available resources. Remote laboratories have been used for controlling physical devices remotely. Furthermore, remote labs have been used for transfer function identification of real equipment. Nevertheless, remote analyses of disturbances have not been done. The aim of this contribution is thereby to apply the experience of remote laboratories in the study of disturbances. Some experiments are carried out to demonstrate the effectiveness in using remote laboratories for complete analysis of a thermal system. Considering the remote access to thermal system, “Sistema de Laboratorios a Distancia” (SLD) was used.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

Los lenguajes de programación son el idioma que los programadores usamos para comunicar a los computadores qué queremos que hagan. Desde el lenguaje ensamblador, que traduce una a una las instrucciones que interpreta un computador hasta lenguajes de alto nivel, se ha buscado desarrollar lenguajes más cercanos a la forma de pensar y expresarse de los humanos. Los lenguajes de programación lógicos como Prolog utilizan a su vez el lenguaje de la lógica de 1er orden de modo que el programador puede expresar las premisas del problema que se quiere resolver sin preocuparse del cómo se va a resolver dicho problema. La resolución del problema se equipara a encontrar una deducción del objetivo a alcanzar a partir de las premisas y equivale a lo que entendemos por la ejecución de un programa. Ciao es una implementación de Prolog (http://www.ciao-lang.org) y utiliza el método de resolución SLD, que realiza el recorrido de los árboles de decisión en profundidad(depth-first) lo que puede derivar en la ejecución de una rama de busqueda infinita (en un bucle infinito) sin llegar a dar respuestas. Ciao, al ser un sistema modular, permite la utilización de extensiones para implementar estrategias de resolución alternativas como la tabulación (OLDT). La tabulación es un método alternativo que se basa en memorizar las llamadas realizadas y sus respuestas para no repetir llamadas y poder usar las respuestas sin recomputar las llamadas. Algunos programas que con SLD entran en un bucle infinito, gracias a la tabulación dán todas las respuestas y termina. El modulo tabling es una implementación de tabulación mediante el algoritmo CHAT. Esta implementación es una versión beta que no tiene implementado un manejador de memoria. Entendemos que la gestión de memoria en el módulo de tabling tiene gran importancia, dado que la resolución con tabulación permite reducir el tiempo de computación (al no repetir llamadas), aumentando los requerimientos de memoria (para guardar las llamadas y las respuestas). Por lo tanto, el objetivo de este trabajo es implementar un mecanismo de gestión de la memoria en Ciao con el módulo tabling cargado. Para ello se ha realizado la implementación de: Un mecanismo de captura de errores que: detecta cuando el computador se queda sin memoria y activa la reinicialización del sitema. Un procedimiento que ajusta los punteros del modulo de tabling que apuntan a la WAM tras un proceso de realojo de algunas de las áreas de memoria de la WAM. Un gestor de memoria del modulo de tabling que detecta c realizar una ampliación de las áreas de memoria del modulo de tabling, realiza la solicitud de más memoria y realiza el ajuste de los punteros. Para ayudar al lector no familiarizado con este tema, describimos los datos que Ciao y el módulo de tabling alojan en las áreas de memoria dinámicas que queremos gestionar. Los casos de pruebas desarrollados para evaluar la implementación del gestor de memoria, ponen de manifiesto que: Disponer de un gestor de memoria dinámica permite la ejecución de programas en un mayor número de casos. La política de gestión de memoria incide en la velocidad de ejecución de los programas. ---ABSTRACT---Programming languages are the language that programmers use in order to communicate to computers what we want them to do. Starting from the assembly language, which translates one by one the instructions to the computer, and arriving to highly complex languages, programmers have tried to develop programming languages that resemble more closely the way of thinking and communicating of human beings. Logical programming languages, such as Prolog, use the language of logic of the first order so that programmers can express the premise of the problem that they want to solve without having to solve the problem itself. The solution to the problem is equal to finding a deduction of the objective to reach starting from the premises and corresponds to what is usually meant as the execution of a program. Ciao is an implementation of Prolog (http://www.ciao-lang.org) and uses the method of resolution SLD that carries out the path of the decision trees in depth (depth-frist). This can cause the execution of an infinite searching branch (an infinite loop) without getting to an answer. Since Ciao is a modular system, it allows the use of extensions to implement alternative resolution strategies, such as tabulation (OLDT). Tabulation is an alternative method that is based on the memorization of executions and their answers, in order to avoid the repetition of executions and to be able to use the answers without reexecutions. Some programs that get into an infinite loop with SLD are able to give all the answers and to finish thanks to tabulation. The tabling package is an implementation of tabulation through the algorithm CHAT. This implementation is a beta version which does not present a memory handler. The management of memory in the tabling package is highly important, since the solution with tabulation allows to reduce the system time (because it does not repeat executions) and increases the memory requirements (in order to save executions and answers). Therefore, the objective of this work is to implement a memory management mechanism in Ciao with the tabling package loaded. To achieve this goal, the following implementation were made: An error detection system that reveals when the computer is left without memory and activate the reinizialitation of the system. A procedure that adjusts the pointers of the tabling package which points to the WAM after a process of realloc of some of the WAM memory stacks. A memory manager of the tabling package that detects when it is necessary to expand the memory stacks of the tabling package, requests more memory, and adjusts the pointers. In order to help the readers who are not familiar with this topic, we described the data which Ciao and the tabling package host in the dynamic memory stacks that we want to manage. The test cases developed to evaluate the implementation of the memory manager show that: A manager for the dynamic memory allows the execution of programs in a larger number of cases. Memory management policy influences the program execution speed.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

La investigación se desarrolló en áreas de producción de la Empresa Azucarera Majibacoa de la provincia Las Tunas, para la evaluación de la efectividad de mezclas de herbicidas en el control de arvenses en plantaciones de caña de azúcar, variedad C 86-503, en caña planta de primavera, en aplicaciones pre-post-emergentes, en tres tipos de suelos: Fersialítico pardo rojizo, Pardo mullido y Vertisol crómico gléyco. En el área experimental se trazaron parcelas, según un diseño de bloques al azar con cuatro réplicas, la aplicación de las mezclas se realizó con asperjadora manual Super Agro-16 (MATABI), 20 días después de la plantación, cuando las yemas de las estacas de caña de azúcar habían brotado, con presencia de algunas arvenses. Se determinaron las especies de arvenses presentes en el área y las que aparecieron después de las aplicaciones, el porcentaje de cobertura de las mismas y la fitotoxicidad provocada por la mezcla de herbicidas, así como sus costos y la cantidad de días que se mantuvo limpio el campo. Se evaluaron seis mezclas: Ametrina + Diurón; Ametrina + 2,4-D y cuatro dosis Merlin + Ametrina + 2,4-D. Las mayores dosis de Merlin (Isoxaflutole): 0,150; 0,200 y 0,250 kg ha-1 resultaron las más efectivas en el control de arvenses, provocando una ligera fitotoxicidad en forma de pequeños puntos de color blanco en las hojas de la caña, los suelos más arcillosos (Vertisol y Pardo) requirieron las mayores dosis. Con estas dosis de Merlin se obtienen las mezclas más costosas; sin embargo, ellas mantuvieron un mayor período de tiempo limpio el campo de caña, lo que provocó que el costo por día limpio fuera menor

Relevância:

10.00% 10.00%

Publicador:

Resumo:

Mice carrying mutations in either the dominant white-spotting (W) or Steel (Sl) loci exhibit deficits in melanogenesis, gametogenesis, and hematopoiesis. W encodes the Kit receptor tyrosine kinase, while Sl encodes the Kit ligand, Steel factor, and the receptor-ligand pair are contiguously expressed at anatomical sites expected from the phenotypes of W and Sl mice. The c-kit and Steel genes are also both highly expressed in the adult murine hippocampus: Steel is expressed in dentate gyrus neurons whose mossy fiber axons synapse with the c-kit expressing CA3 pyramidal neurons. We report here that Sl/Sld mutant mice have a specific deficit in spatial learning. These mutant mice are also deficient in baseline synaptic transmission between the dentate gyrus and CA3 but show normal long-term potentiation in this pathway. These observations demonstrate a role for Steel factor/Kit signaling in the adult nervous system and suggest that a severe deficit in hippocampal-dependent learning need not be associated with reduced hippocampal long-term potentiation.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

The present study addresses the call for theory-based investigations on workplace familism. It contributes to the literature by proposing and testing the moderating role of workplace familism between psychological contract breach and civic virtue behaviour. We surveyed 267 full-time employees and found main effects of both types of workplace familism (i.e. workplace organisational and workplace supervisor familism) and breach of relational obligations on civic virtue behaviour. Workplace supervisor familism also moderated the relationship between breach and civic virtue behaviour, with the negative relationship between breach and civic virtue behaviour stronger when workplace supervisor familism was high. This suggests that employees with a high level of workplace supervisor familism may feel a sense of betrayal and, therefore, respond more negatively to contract breach. Implications for practice and directions for future research are discussed.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

Research partially supported by a grant of Caja de Ahorros del Mediterraneo.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

Banana discs of 1 cm thickness were immersed into different antioxidant solutions to slow down potentially disturbing discoloration during drying. Samples were randomly split into 8 groups according to the 2^p experimental design. Two antioxidant solutions with 1.66% and 4.59% ascorbic acid, two levels of drying temperature with 50°C and 80°C, two levels of drying time with 6h and 8h were used or adjusted. Laser diodes of seven wavelengths (532, 635, 650, 780, 808, 850 and 1064 nm) were selected to illuminate the surface and light penetration pattern was evaluated on the basis of radial profiles. Profiles acquired at three wavelengths (532, 635 and 650 nm) were found to respond sensitively to adjusted parameters. As a result of drying, intensity decay was observed to move closer to incident point. Significant effect (p<0.01) of temperature, drying time and their interaction was found on extracted descriptive attributes of intensity profiles: full width at half maximum (FWHM), distance of inflection point (DIP) and slope of logarithmic decay (SLD). Beyond their presence, antioxidant concentration was neutral factor without significant contribution to the model. Results were in agreement with reference spectroscopic measurements, especially with NDVI index. Promising results suggest that evaluated method might be suitable for monitoring purposes during drying of fruits.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

This study investigated the effects of repeated readings on the reading abilities of 4, third-, fourth-, and fifth-grade English language learners (ELLs) with specific learning disabilities (SLD). A multiple baseline probe design across subjects was used to explore the effects of repeated readings on four dependent variables: reading fluency (words read correctly per minute; wpm), number of errors per minute (epm), types of errors per minute, and answer to literal comprehension questions. Data were collected and analyzed during baseline, intervention, generalization probes, and maintenance probes. Throughout the baseline and intervention phases, participants read a passage aloud and received error correction feedback. During baseline, this was followed by fluency and literal comprehension question assessments. During intervention, this was followed by two oral repeated readings of the passage. Then the fluency and literal comprehension question assessments were administered. Generalization probes followed approximately 25% of all sessions and consisted of a single reading of a new passage at the same readability level. Maintenance sessions occurred 2-, 4-, and 6-weeks after the intervention ended. The results of this study indicated that repeated readings had a positive effect on the reading abilities of ELLs with SLD. Participants read more wpm, made fewer epm, and answered more literal comprehension questions correctly. Additionally, on average, generalization scores were higher in intervention than in baseline. Maintenance scores were varied when compared to the last day of intervention, however, with the exception of the number of hesitations committed per minute maintenance scores were higher than baseline means. This study demonstrated that repeated readings improved the reading abilities of ELLs with SLD and that gains were generalized to untaught passages. Maintenance probes 2-, 4-, and 6- weeks following intervention indicated that mean reading fluency, errors per minute, and correct answers to literal comprehensive questions remained above baseline levels. Future research should investigate the use of repeated readings in ELLs with SLD at various stages of reading acquisition. Further, future investigations may examine how repeated readings can be integrated into classroom instruction and assessments.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

Many culturally and linguistically diverse (CLD) students with specific learning disabilities (SLD) struggle with the writing process. Particularly, they have difficulties developing and expanding ideas, organizing and elaborating sentences, and revising and editing their compositions (Graham, Harris, & Larsen, 2001; Myles, 2002). Computer graphic organizers offer a possible solution to assist them in their writing. This study investigated the effects of a computer graphic organizer on the persuasive writing compositions of Hispanic middle school students with SLD. A multiple baseline design across subjects was used to examine its effects on six dependent variables: number of arguments and supporting details, number and percentage of transferred arguments and supporting details, planning time, writing fluency, syntactical maturity (measured by T-units, the shortest grammatical sentence without fragments), and overall organization. Data were collected and analyzed throughout baseline and intervention. Participants were taught persuasive writing and the writing process prior to baseline. During baseline, participants were given a prompt and asked to use paper and pencil to plan their compositions. A computer was used for typing and editing. Intervention required participants to use a computer graphic organizer for planning and then a computer for typing and editing. The planning sheets and written composition were printed and analyzed daily along with the time each participant spent on planning. The use of computer graphic organizers had a positive effect on the planning and persuasive writing compositions. Increases were noted in the number of supporting details planned, percentage of supporting details transferred, planning time, writing fluency, syntactical maturity in number of T-units, and overall organization of the composition. Minimal to negligible increases were noted in the mean number of arguments planned and written. Varying effects were noted in the percent of transferred arguments and there was a decrease in the T-unit mean length. This study extends the limited literature on the effects of computer graphic organizers as a prewriting strategy for Hispanic students with SLD. In order to fully gauge the potential of this intervention, future research should investigate the use of different features of computer graphic organizer programs, its effects with other writing genres, and different populations.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

This study investigated the effects of word prediction and text-to-speech on the narrative composition writing skills of 6, fifth-grade Hispanic boys with specific learning disabilities (SLD). A multiple baseline design across subjects was used to explore the efficacy of word prediction and text-to-speech alone and in combination on four dependent variables: writing fluency (words per minute), syntax (T-units), spelling accuracy, and overall organization (holistic scoring rubric). Data were collected and analyzed during baseline, assistive technology interventions, and at 2-, 4-, and 6-week maintenance probes. ^ Participants were equally divided into Cohorts A and B, and two separate but related studies were conducted. Throughout all phases of the study, participants wrote narrative compositions for 15-minute sessions. During baseline, participants used word processing only. During the assistive technology intervention condition, Cohort A participants used word prediction followed by word prediction with text-to-speech. Concurrently, Cohort B participants used text-to-speech followed by text-to-speech with word prediction. ^ The results of this study indicate that word prediction alone or in combination with text-to-speech has a positive effect on the narrative writing compositions of students with SLD. Overall, participants in Cohorts A and B wrote more words, more T-units, and spelled more words correctly. A sign test indicated that these perceived effects were not likely due to chance. Additionally, the quality of writing improved as measured by holistic rubric scores. When participants in Cohort B used text-to-speech alone, with the exception of spelling accuracy, inconsequential results were observed on all dependent variables. ^ This study demonstrated that word prediction alone or in combination assists students with SLD to write longer, improved-quality, narrative compositions. These results suggest that word prediction or word prediction with text-to-speech be considered as a writing support to facilitate the production of a first draft of a narrative composition. However, caution should be given to the use of text-to-speech alone as its effectiveness has not been established. Recommendations for future research include investigating the use of these technologies in other phases of the writing process, with other student populations, and with other writing styles. Further, these technologies should be investigated while integrated into classroom composition instruction. ^

Relevância:

10.00% 10.00%

Publicador:

Resumo:

Dropout rates impacting students with high-incidence disabilities in American schools remain staggering (Bost, 2006; Hehir, 2005). Of this group, students with Emotional Behavioral Disorders (EBD) are at greatest risk. Despite the mandated national propagation of inclusion, students with EBD remain the least included and the least successful when included (Bost). Accordingly, this study investigated the potential significance of inclusive settings and other school-related variables within the context of promoting the graduation potential of students with Specific Learning Disabilities (SLD) or EBD. This mixed-methods study investigated specified school-related variables as likely dropout predictors, as well as the existence of first-order interactions among some of the variables. In addition, it portrayed the perspectives of students with SLD or EBD on the school-related variables that promote graduation. Accordingly, the sample was limited to students with SLD or EBD who had graduated or were close to graduation. For the quantitative component the numerical data were analyzed using linear and logistic regressions. For the qualitative component guided student interviews were conducted. Both strands were subsequently analyzed using Ridenour and Newman’s (2008) model where the quantitative hypotheses are tested and are later built-upon by the related qualitative meta-themes. Results indicated that a successful academic history, or obtaining passing grades was the only significant predictor of graduation potential when statistically controlling all the other variables. While at a marginal significance, results also yielded that students with SLD or EBD in inclusive settings experienced better academic results and behavioral outcomes than those in self-contained settings. Specifically, students with SLD or EBD in inclusive settings were found to be more likely to obtain passing grades and less likely to be suspended from school. Generally, the meta-themes yielded during the student interviews corroborated these findings as well as provided extensive insights on how students with disabilities view school within the context of promoting graduation. Based on the results yielded, provided the necessary academic accommodations and adaptations are in place, along with an effective behavioral program, inclusive settings can be utilized as drop-out prevention tools in special education.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

Black students, in general, are underserved academically (Darling-Hammond, 2000; Townsend, 2002) and overrepresented in special education (Donovan & Cross, 2002). Black students with disabilities are further overrepresented in more restrictive educational environments (Skiba, Poloni-Staudinger, Gallini, Simmons & Feggins-Azziz, 2006). Although the National Longitudinal Transition Study 2 (NLTS2) revealed that the academic performance of students with learning disabilities is positively related to the percentage of courses taken in the general education setting (Newman, 2006), the research specifically on placement of Black students with disabilities, particularly at the secondary level, as it relates to academic achievement is lacking. While previous studies have sought to determine which placement is better for students with disabilities, no study was found that specifically examined the impact of placement specific to Black students with specific learning disabilities (SLD) in urban settings (Fore, III, Hagan-Burke, Burke, Boon & Smith, 2008; Rea, McLaughlin & Walther-Thomas, 2002). This study examined educational placement, instructional best practices, and achievement gains of Black students with SLD in urban secondary settings using an ex post facto research design. Achievement, placement, and demographic data were collected and analyzed on approximately 314 Black eighth grade students with SLD. The Teacher Instructional Practices Survey was developed and used to collect and analyze data from the teachers of 78 of these students as it relates to instructional best practices. Results indicate no significant difference in reading but a significant difference in math gains of students served in inclusive settings as compared to resource settings with a small effect size. Also, no significant relationship was found between achievement gains and the reported use of instructional best practices. However, there was a relationship between educational placement and the use of instructional best practices. The results implied that there is a need for training with both general and special education teachers on instructional best practices for SWD and that there should be certain IEP team considerations when making placement decisions for this population of students with disabilities. It is recommended that future research in this area include classroom observations and factors other than test scores to measure growth in achievement.

Relevância:

10.00% 10.00%

Publicador:

Resumo:

Writing is an academic skill critical to students in today's schools as it serves as a predominant means for demonstrating knowledge during school years (Graham, 2008). However, for many students with Specific Learning Disabilities (SLD), learning to write is a challenging, complex process (Lane, Graham, Harris, & Weisenbach, 2006). Students SLD have substantial writing challenges related to the nature of their disability (Mayes & Calhoun, 2005). ^ This study investigated the effects of computer graphic organizer software on the narrative writing compositions of four, fourth- and fifth-grade, elementary-level boys with SLD. A multiple baseline design across subjects was used to explore the effects of the computer graphic organizer software on four dependent variables: total number of words, total planning time, number of common story elements, and overall organization. ^ Prior to baseline, participants were taught the fundamentals of narrative writing. Throughout baseline and intervention, participants were read a narrative writing prompt and were allowed up to 10 minutes to plan their writing, followed by 15 minutes for writing, and 5 minutes of editing. During baseline, all planning was done using paper and pencil. During intervention, planning was done on the computer using a graphic organizer developed from the software program Kidspiration 3.0 (2011). All compositions were written and editing was done using paper and pencil during baseline and intervention. ^ The results of this study indicated that to varying degrees computer graphic organizers had a positive effect on the narrative writing abilities of elementary aged students with SLD. Participants wrote more words (from 54.74 to 96.60 more), planned for longer periods of time (from 4.50 to 9.50 more minutes), and included more story elements in their compositions (from 2.00 to 5.10 more out of a possible 6). There were nominal to no improvements in overall organization across the 4 participants. ^ The results suggest that teachers of students with SLD should considering use computer graphic organizers in their narrative writing instruction, perhaps in conjunction with remedial writing strategies. Future investigations can include other types of writing genres, other stages of writing, participants with varied demographics and their use combined with remedial writing instruction. ^