Line 7: | Line 7: | ||
Below, I give an overview of my use of Matlab in teaching and research. Enjoy! [[User:Huffmalm|Huffmalm]] | Below, I give an overview of my use of Matlab in teaching and research. Enjoy! [[User:Huffmalm|Huffmalm]] | ||
− | * Creating synthetic sound signals | + | |
− | + | == Teaching == | |
+ | * Creating synthetic sound signals in Matlab | ||
** [https://kiwi.ecn.purdue.edu/rhea/index.php/Homework_1 ECE 301 exercise] | ** [https://kiwi.ecn.purdue.edu/rhea/index.php/Homework_1 ECE 301 exercise] | ||
+ | ** [Mario Bros Theme Tune] | ||
+ | * Understanding convolution using Matlab | ||
+ | ** [https://kiwi.ecn.purdue.edu/rhea/index.php/Homework_2 ECE 301 exercise] | ||
+ | ** [Custom convolution function] (emphasizing the practice of minimizing Matlab for loops) | ||
+ | * Understanding Fourier expansions of periodic signals | ||
+ | ** [https://kiwi.ecn.purdue.edu/rhea/index.php/Fourier_Properties ECE 301 exercise] | ||
+ | ** [(exercise solution)] | ||
+ | |||
+ | == Research == | ||
+ | The bulk of my research is implemented in Matlab. My work in video object tracking () has involved the construction a human tracker implemented entirely in Matlab. The code is too extensive to post, but I mention here some key pieces of the software provided by Matlab's built-in capabilities. | ||
+ | * Matlab's '''Object Oriented''' framework | ||
+ | * Incorporation of some custom C code through '''mex''' | ||
+ | * '''OpenGL rendering''' within a Matlab Figure | ||
+ | * '''Multimedia packages''' (mmreader, etc) | ||
+ | * Mathworks' '''online community.''' I have borrowed bits of code written by other Matlab users who post on Mathworks' message boards. | ||
+ | |||
+ | I also mention some important practices of Matlab |
Revision as of 04:32, 6 October 2010
Landis Huffman's Matlab Page
Matlab has proved to be an invaluable tool for my work in signal processing engineering. Its extensive library of functions and seamless incorporation of graphical visualizations makes it incredibly useful for building prototypes and debugging at a system or algorithm level. It's ease of use, and freedom from monotonous low level implementation details provide an advantage over C and other lower-level programming languages for research purposes.
Matlab is also incredibly useful in the teaching arena, providing a vessel for hands-on, interactive learning of abstract concepts which are often taught in the stale confines of a chalk board.
Below, I give an overview of my use of Matlab in teaching and research. Enjoy! Huffmalm
Teaching
- Creating synthetic sound signals in Matlab
- ECE 301 exercise
- [Mario Bros Theme Tune]
- Understanding convolution using Matlab
- ECE 301 exercise
- [Custom convolution function] (emphasizing the practice of minimizing Matlab for loops)
- Understanding Fourier expansions of periodic signals
- ECE 301 exercise
- [(exercise solution)]
Research
The bulk of my research is implemented in Matlab. My work in video object tracking () has involved the construction a human tracker implemented entirely in Matlab. The code is too extensive to post, but I mention here some key pieces of the software provided by Matlab's built-in capabilities.
- Matlab's Object Oriented framework
- Incorporation of some custom C code through mex
- OpenGL rendering within a Matlab Figure
- Multimedia packages (mmreader, etc)
- Mathworks' online community. I have borrowed bits of code written by other Matlab users who post on Mathworks' message boards.
I also mention some important practices of Matlab