Growth - Yet another Obfuscated MATLAB code
Editor's Note: This file was selected as MATLAB Central Pick of the Week
This is an obfuscated piece of MATLAB code, where the source text is made to look like its output figure.
This program also demonstrates several techniques for functional programming in MATLAB using anonymous functions. This code runs only by executing a single anonymous function, without touching the global workspace at all, and also without the help of external libraries.
When executed, this code outputs a figure of a forest, consisting of 9 trees. The number of trees to draw could be changed by changing the constant 9 in the end of the code.
In this code, the following features are implemented/used:
- recursion (and loops)
- conditionals (and lazy evaluation)
- local variables ('let' clause)
- execution of multiple statements
Technical details
- Recursion is implemented by using the Y combinator.
- Loops are implemented by tail recursion.
- Conditionals are implemented by evaluating a function chosen from a list,
where the index number is given by a formula consisting of relational operators.
- Lazy evaluation is performed by wrapping an expression with @()
and then applying feval at a desired timing.
- Local variables are implemented by passing constants to a function through its arguments.
Functional Programming in MATLAB is also introduced in:
Introduction to Functional Programming with Anonymous Functions, Part 1
http://blogs.mathworks.com/loren/2013/01/10/introduction-to-functional-programming-with-anonymous-functions-part-1/
Cite As
Hikaru Ikuta (2025). Growth - Yet another Obfuscated MATLAB code (https://github.com/woodrush/growth), GitHub. Retrieved .
MATLAB Release Compatibility
Platform Compatibility
Windows macOS LinuxCategories
- MATLAB > Mathematics > Fractals >
Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.
Versions that use the GitHub default branch cannot be downloaded
Version | Published | Release Notes | |
---|---|---|---|
1.5.0.0 | Updated description |
|
|
1.3.0.0 | 12.3.2014 - updated screenshot |
|
|
1.2.0.0 | 12.3.2014 - updated screenshot |
|
|
1.1.0.0 | 12.3.2014 - updated screenshot |
|
|
1.0.0.0 |
|