├── .gitattributes ├── .gitignore ├── Analysis ├── akfsurface.m ├── candle1.csv ├── candle2.csv ├── ledtogif.m └── readme.txt ├── Images ├── candle_disturb.png ├── ledcandle.gif ├── motionlesscandle.gif ├── realcandle_undisturbed_sm.png ├── set-up.jpg └── windycandle.gif └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpldcpu/RealCandle/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpldcpu/RealCandle/HEAD/.gitignore -------------------------------------------------------------------------------- /Analysis/akfsurface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpldcpu/RealCandle/HEAD/Analysis/akfsurface.m -------------------------------------------------------------------------------- /Analysis/candle1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpldcpu/RealCandle/HEAD/Analysis/candle1.csv -------------------------------------------------------------------------------- /Analysis/candle2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpldcpu/RealCandle/HEAD/Analysis/candle2.csv -------------------------------------------------------------------------------- /Analysis/ledtogif.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpldcpu/RealCandle/HEAD/Analysis/ledtogif.m -------------------------------------------------------------------------------- /Analysis/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpldcpu/RealCandle/HEAD/Analysis/readme.txt -------------------------------------------------------------------------------- /Images/candle_disturb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpldcpu/RealCandle/HEAD/Images/candle_disturb.png -------------------------------------------------------------------------------- /Images/ledcandle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpldcpu/RealCandle/HEAD/Images/ledcandle.gif -------------------------------------------------------------------------------- /Images/motionlesscandle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpldcpu/RealCandle/HEAD/Images/motionlesscandle.gif -------------------------------------------------------------------------------- /Images/realcandle_undisturbed_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpldcpu/RealCandle/HEAD/Images/realcandle_undisturbed_sm.png -------------------------------------------------------------------------------- /Images/set-up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpldcpu/RealCandle/HEAD/Images/set-up.jpg -------------------------------------------------------------------------------- /Images/windycandle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpldcpu/RealCandle/HEAD/Images/windycandle.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpldcpu/RealCandle/HEAD/README.md --------------------------------------------------------------------------------