Parallel programming laboratory

Slides:



Advertisements
Similar presentations
Z-Plane Analysis DR. Wajiha Shah. Content Introduction z-Transform Zeros and Poles Region of Convergence Important z-Transform Pairs Inverse z-Transform.
Advertisements

Line clipping: Line clipping algorithm is method of eliminate lines of outside area of the object,so outside of object viewing is Removed. Typically, any.
Complex Dynamics and Crazy Mathematics Dynamics of three very different families of complex functions: 1.Polynomials (z 2 + c) 2. Entire maps ( exp(z))
What’s Your Guess? Chapter 9: Review of Convergent or Divergent Series.
K-Means and DBSCAN Erik Zeitler Uppsala Database Laboratory.
Morphology Structural processing of images Image Processing and Computer Vision: 33 Morphological Transformations Set theoretic methods of extracting.
The infinitely complex… Fractals Jennifer Chubb Dean’s Seminar November 14, 2006 Sides available at
Approaches To Infinity. Fractals Self Similarity – They appear the same at every scale, no matter how much enlarged.
Mandelbrot Fractals Betsey Davis MathScience Innovation Center.
HONR 300/CMSC 491 Computation, Complexity, and Emergence Mandelbrot & Julia Sets Prof. Marie desJardins February 22, 2012 Based on slides prepared by Nathaniel.
1 GEM2505M Frederick H. Willeboordse Taming Chaos.
1 CS4402 – Parallel Computing Lecture 7 Parallel Graphics – More Fractals Scheduling.
Structured Chaos: Using Mata and Stata to Draw Fractals
8.1: Sequences.
Experiments with MATLAB Mandelbrot Set Roger Jang ( 張智星 ) CSIE Dept, National Taiwan University
Excel quad iteration M-set iterator Movie maker 75.
Ch 9 Infinity page 1CSC 367 Fractals (9.2) Self similar curves appear identical at every level of detail often created by recursively drawing lines.
Dynamics of the family of complex maps Paul Blanchard Toni Garijo Matt Holzer Robert Kozma Dan Look Sebastian Marotta Mark Morabito with: Monica Moreno.
Field Trip #33 Creating and Saving Fractals. Julia Set We consider a complex function, f(z) For each point on the complex plane (x,y), where z = x + iy,
Fractals. Most people don’t think of mathematics as beautiful but when you show them pictures of fractals…
David Chan TCM and what can you do with it in class?
Fractals in nature.
1 Computability Julia sets Mark Braverman Microsoft Research January 6, 2009.
divergent 2.absolutely convergent 3.conditionally convergent.
Governor’s School for the Sciences Mathematics Day 4.
Management in complexity The exploration of a new paradigm Complexity theory and the Quantum Interpretation Walter Baets, PhD, HDR Associate Dean for Innovation.
Complexity Leadership Dynamical Systems & Leadership Jim Hazy July 19, 2007.
Fractals Rule! Some Background Information Helpful to People Wanting to Understand Fractal Geometry.
13.5 – Sums of Infinite Series Objectives: You should be able to…
HONR 300/CMSC 491 Computation, Complexity, and Emergence
Theory of nonlinear dynamic systems Practice 9
2. Skin - color filtering.
(2) Region of Convergence ( ROC )
Distributed Computation Framework for Machine Learning
Infinite GP’s.
CSCE 441 Computer Graphics: Clipping Polygons Jinxiang Chai
Images in Lenses.
Numerical Study of Partition Function Zeros on Recursive Lattices
Specialist Mathematics
ITERATIVE DYNAMIC SYSTEMS THROUGH THE MANDELBROT AND JULIA SETS
Laplace transform Example Region of convergence (ROC)
Plate Tectonics.
CSSE463: Image Recognition Day 17
Given the series: {image} and {image}
Infinite Geometric Series
Test the series for convergence or divergence. {image}
CSCE 441 Computer Graphics: Clipping Lines Jinxiang Chai
CSCE 441 Computer Graphics: Clipping Polygons Jinxiang Chai
CSCE 441 Computer Graphics: Clipping Lines Jinxiang Chai
The Fractal Geometry of the Mandelbrot Set.
Test the series for convergence or divergence. {image}
Graph Clustering based on Random Walk
CSCE 441 Computer Graphics: Clipping Polygons Jinxiang Chai
Math 265 Sections 13.1 – 13.5 Created by Educational Technology Network
CSSE463: Image Recognition Day 17
Discrete systems Discrete systems with state dependent parameters
VOLCANOES AND PLATE TECTONICS
CSSE463: Image Recognition Day 17
Both series are divergent. A is divergent, B is convergent.
If the sequence of partial sums converges, the series converges
DESIGN is ultimately about conscious control.
ECE 448: Spring 2019 Lab 5 Julia Set Fractal.
Computer Graphics - Lecture 6
CSSE463: Image Recognition Day 17
Type to enter a caption. Computer Graphics Week 2 Lecture 1.
Determine whether the sequence converges or diverges. {image}
10.8: Improper Integrals (infinite bound)
ECE 448: Spring 2016 Lab 5 Julia Set Fractal.
Find the interval of convergence of the series. {image}
Find the interval of convergence of the series. {image}
Presentation transcript:

Parallel programming laboratory

Iterated function attractors z = x + iy Converge into point p Divergent Evolve in a closed region: Attractor

z  z2 z = r e i r  r 2   2 divergent convergent 1 Attractor: H = F(H)

Attractor The attractor is a boundary between the divergent and convergent region Filled attractor = non divergent region z n+1 = z n2 : if |z |<  then black

Julia set: z  z2 + c

Filled Julia set: algorithm Im z (X,Y) FilledJuliaDraw ( ) FOR Y = 0 TO Ymax DO FOR X = 0 TO Xmax DO ViewportWindow(X,Y  x, y) z = x + j y FOR i = 0 TO n DO z = z2 + c IF |z| > “infinity” THEN WRITE(X,Y, white) ELSE WRITE(X,Y, black) ENDFOR END Re z

Mandelbrot set Those C complex numbers, where the z  z2 + c Julia set is connected

Mandelbrot set, algorithm MandelbrotDraw ( ) FOR Y = 0 TO Ymax DO FOR X = 0 TO Xmax DO ViewportWindow(X,Y  x, y) c = x + j y z = 0 FOR i = 0 TO n DO z = z2 + c IF |z| > “infinity” THEN WRITE(X,Y, white) ELSE WRITE(X,Y, black) ENDFOR END