Skip to content

Instantly share code, notes, and snippets.

View c42f's full-sized avatar

Claire Foster c42f

View GitHub Profile
@c42f
c42f / SimpleSymbolic.jl
Last active July 26, 2016 03:05 — forked from andyferris/SimpleSymbolic.jl
Simply symbolic manipulations and some matrix math for Euler angle rotations
module SimpleSymbolic
immutable S{Ex}
x::Ex
end
macro S(ex)
Expr(:call, :S, Expr(:quote, ex))
end