Skip to content

bethel-physics/hw_mandelbrotgui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

hw_mandelbrotgui

Write a short MATLAB GUI to allow the user to explore the fractal of the Mandelbrot Set.

Fractals

Given:

You can use the file mandelbrot.m, which can be called from the command line of MATLAB with

>> mandelbrot(m,n,xmin,xmax,ymin,ymax,numit)

where:

  • m and n are integers that define the horizontal and vertical resolution of the image
  • xmin, xmax, ymin, and ymax define the domain of the window
  • numit is the number of iterations for the solution (more iterations results in a sharper image).

Suggested starting values for each of these inputs can be found by typing “help mandelbrot” in the command window.

Assignment:

Write a GUI that allows the user to control the viewing window and resolution of the fractal. Feel free to design your own interface, but the user should be able to navigate into the Mandelbrot fractal with various levels of resolution.

Note:

You DO NOT need to do anything to the mandelbrot.m file. Instead, the GUI will call mandelbrot.m as an external function. The GUI should simply control how the mandelbrot.m function is called by altering the viewing window and/or image resolution.

About

Create a MATLAB GUI to explore the Mandelbrot fractal

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages