Skip to content
View swatalla's full-sized avatar
  • Chapel Hill, NC

Block or report swatalla

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
swatalla/README.md

About me

I am a Physics & Astronomy Ph.D. student at the University of North Carolina at Chapel Hill.

My interests are in the application of machine learning to physical systems, especially those in the domain of medical imaging. My current research projects specifically involve the application of deep learning in xenon CT and MR imaging.

Additional pins

Neural net for classifying MR images based on Alzheimer's disease severity: https://gist.github.com/swatalla/3f54646f5d3fcaa7bcb05d2ac3f1b0f0

Pinned Loading

  1. LinearSystemSolver LinearSystemSolver Public

    Exercise in developing a strongly typed linear system solver without using explicit loops.

    F#

  2. fsFFT fsFFT Public

    FFT library with windowing for F#

    F#

  3. ioNIFTI ioNIFTI Public

    .NET IO library for NIFTI image files

    F#

  4. rwls rwls Public

    rWLS toolbox, updated for use with SPM12 build 7219

    MATLAB 1

  5. task_analysis task_analysis Public

    Analysis scripts for task-evoked data

    MATLAB

  6. Approximate pi, an integral, and an ... Approximate pi, an integral, and an integral with approximate error using Monte Carlo methods.
    1
    // Finds PI
    2
    let MonteCarloPi iter =
    3
        let rnd = Random()
    4
        let unit (x, y) = sqrt ((pown x 2) + (pown y 2))
    5
        Array.init iter (fun _ -> (rnd.NextDouble(), rnd.NextDouble()))