SlideShare uma empresa Scribd logo
1 de 21
OOP’S
Presentation
Submitted By,
Sharwon Pius M.
2013/B/17
Clearing The ‘‘OOP’S’’ Concept !
– 1. Object - Instance of Class
2. Class - Blue print of Object
3. Encapsulation - Protecting our Data
4. Polymorphism - Different behaviors at different instances
5. Abstraction - Hiding our irrelevant Data
6. Inheritance - One property of object is acquiring to
– another property of the object
Class & Object
– we have a Class of Laptop under which Lenovo G50, HP envy and Sony viao t5
represents individual Objects. In this context each Laptop Object will have its
own, Model,Year of Manufacture, Colour, Speed,BatteryPower etc.,which form
Properties of the Laptop class and the associated actions i.e., object functions
like Start, Restart, Volume down /up form the Methods of Laptop Class.
– The blueprint is the class...the Laptop is the object. The data of people using
the laptop ,are data stored in the object's properties.
Laptop
Lenovo G50s
HP Envy m6
Abstraction & Encapsulation
– Abstraction says, only show relevant details and rest all hide it. For Example,
This Laptop allows you to connect to wifi and surf the internet but it doesn't
show you how its actually done.
– Abstraction & Encapsulation works hand in hand because Abstraction says what
details to be made visible & Encapsulation provides the level of access right to
that visible details.SO, while connecting to the wifi the access to other laptops
are restricted for security purposes.
Polymorphmism & Inheritance
– Polymorphism can be defined as the ability of doing the same operation but
with different type of input. The web cam on the Lenovo g50s is having a
functionality of CameraClick(). Now same Lappie is having Butification mode
available in camera, so functionality would be same but with mode. This type is
said to be Static polymorphism or Compile time polymorphism.
– Inheritance is the Ability to extend the functionality from base entity in new
entity belonging to same group. This will help us to reuse the functionality
which is defined before.
Laptop Lenovo
Laptop
Lenovo G50s
HP Envy m6
Laptop Lenovo G50s
Laptop
Lenovo
HP
Single level inheritance
Multi-level inheritance
Hierarchical inheritance Hybrid inheritance
OOPS APPLICATIONS AND
PROBLEMS
1. Engg.
2. Numerical Method
3. Text Processing
4. SCIENCE , GUI by Case study.
The
Problem
statemen
t is to
make a
cheap
blind aid
.
ENGG..
import RPi.GPIO as GPIO
GPIO.setwarnings(False) # supress the system wornings
GPIO.cleanup() # clean up the GPIO pins i.e make the GPIO pins to low
GPIO.setmode(GPIO.BOARD) # Set the mode of numbering the pins.
GPIO.setup(11, GPIO.IN)
#GPIO pin 11 is the input.
GPIO.setup(12, GPIO.IN)
#GPIO pin 12 as input
GPIO.setup(13, GPIO.IN)
#GPIO pin 13 as input pin
left = GPIO.input(11)
fornt = GPIO.input(12)
right = GPIO.input(13)
#keep on polling for input pins
while 1:
{left = GPIO.input(11)
front = GPIO.input(12)
right = GPIO.input(13)
if left == True or front == True or right == True:
buzz(“Stuck! Move your stick randomly")
if left == False and front == False and right == True:
buzz("move either left ot front")
elif left == False and front == True and right == False:
buzz("move either left or right")
elif left == False and front == True and right == True:
buzz("move left")
elif left == True and front == False and right == False:
buzz("move either front or right")
elif left == True and front == False and right == True:
buzz("move front")
elif left == True and front == True and right == False:
buzz("move right")
elif left == True and front == True and right == True:
buzz("better to go back")
else:
buzz(" Checkup appaaratus")
}
Problem Statement: How many numbers need to be stored to save
a symmetric NxN matrix in lower diagonal form? (This is our statement
of problem: Note this may be a small piece of another larger problem).
• Solution algorithm: In lower diagonal form, the number of values needed go as: 1x1=1, 2x2=3, 3x3=6 ...
• To increase the dimension of the matrix from (N-1)x(N-1) to NxN requires N new values. Therefore our
algorithm is the sum of integers from 1 to N
Problem Statement: How many numbers need to be stored to save a symmetric NxN matrix in lower
diagonal form?
SOLUTION
• Call the number of values we need num_elements. How do we compute this value?
(a) Simplest
num_elements = 1 + 2 + 3 + 4 + 5 + .... + N
• Coded specifically for specific values of N. Not very flexible; could be many options depending on
number of values of N possible.
• PROGRAM-
num_elements = 0;
for i = 1:N ;
num_elements = num_elements + i ;
end ;
EARTH MAGNETIC FIELD REVERSAL
The earths magnetic field is improper along some regions of the surface making
navigation cumbersome for voyagers and travelers.
SO Scientists prepared to study the magnetic field of earth from the 1500
hundreds itself.
They found out that each element on earth had its on magnetic spin intensity.
Thus it showed the direction of the Magnetic field of earth its time period.
So they collect fallen metirots and old rocks and tested them . They ended up
with bizarre results , having no correlation between them.
Finally a Prof. GARY GCATZMAR from university of California ( in 1990’s)
put all the data collected till date regarding this magnetic behavior of earth in a
computer model . Dozen’s of equations describing, temp. , viscocity, diamension
and so forth of the plant. Then he just let it run
• To see the world evolve over 100,000
years of stimulated time.
• We can see that the blue region and
yellow region are the main two active
classes ( 1. north pole, 2. south pole)
and each one of its lines are its own
objects.
• These objects have properties and
methods give by those “dozens of
equations”. , along with stimulated
time.
• This proved to state that our planets
Magnetic field will reverse for every
70,000 years.
FINALE
ANY QURIES ….?

Mais conteúdo relacionado

Mais procurados

Classes, objects in JAVA
Classes, objects in JAVAClasses, objects in JAVA
Classes, objects in JAVA
Abhilash Nair
 

Mais procurados (20)

Basic concept of OOP's
Basic concept of OOP'sBasic concept of OOP's
Basic concept of OOP's
 
Basic Concepts of OOPs (Object Oriented Programming in Java)
Basic Concepts of OOPs (Object Oriented Programming in Java)Basic Concepts of OOPs (Object Oriented Programming in Java)
Basic Concepts of OOPs (Object Oriented Programming in Java)
 
Interface in java
Interface in javaInterface in java
Interface in java
 
Java interfaces
Java interfacesJava interfaces
Java interfaces
 
Error managing and exception handling in java
Error managing and exception handling in javaError managing and exception handling in java
Error managing and exception handling in java
 
OOP - Benefits and advantages of OOP
OOP - Benefits and advantages of OOPOOP - Benefits and advantages of OOP
OOP - Benefits and advantages of OOP
 
Functions in c++
Functions in c++Functions in c++
Functions in c++
 
Object-oriented concepts
Object-oriented conceptsObject-oriented concepts
Object-oriented concepts
 
Inheritance in JAVA PPT
Inheritance  in JAVA PPTInheritance  in JAVA PPT
Inheritance in JAVA PPT
 
structured programming
structured programmingstructured programming
structured programming
 
Classes, objects in JAVA
Classes, objects in JAVAClasses, objects in JAVA
Classes, objects in JAVA
 
Introduction to Java Programming
Introduction to Java ProgrammingIntroduction to Java Programming
Introduction to Java Programming
 
Basic concepts of oops
Basic concepts of oopsBasic concepts of oops
Basic concepts of oops
 
OOP Introduction with java programming language
OOP Introduction with java programming languageOOP Introduction with java programming language
OOP Introduction with java programming language
 
Object Oriented Programming
Object Oriented ProgrammingObject Oriented Programming
Object Oriented Programming
 
OOP java
OOP javaOOP java
OOP java
 
Polymorphism in oop
Polymorphism in oopPolymorphism in oop
Polymorphism in oop
 
Abstract class in java
Abstract class in javaAbstract class in java
Abstract class in java
 
Introduction to oop
Introduction to oopIntroduction to oop
Introduction to oop
 
Java(Polymorphism)
Java(Polymorphism)Java(Polymorphism)
Java(Polymorphism)
 

Destaque

Object Oriented Programming with Java
Object Oriented Programming with JavaObject Oriented Programming with Java
Object Oriented Programming with Java
backdoor
 
Object Oriented Programming Concepts
Object Oriented Programming ConceptsObject Oriented Programming Concepts
Object Oriented Programming Concepts
thinkphp
 

Destaque (18)

Object Oriented Programming with Real World Examples
Object Oriented Programming with Real World ExamplesObject Oriented Programming with Real World Examples
Object Oriented Programming with Real World Examples
 
Java Object-Oriented Programming Conecpts(Real-Time) Examples
Java Object-Oriented Programming Conecpts(Real-Time) ExamplesJava Object-Oriented Programming Conecpts(Real-Time) Examples
Java Object-Oriented Programming Conecpts(Real-Time) Examples
 
Introduction to Object Oriented Programming
Introduction to Object Oriented ProgrammingIntroduction to Object Oriented Programming
Introduction to Object Oriented Programming
 
Oops ppt
Oops pptOops ppt
Oops ppt
 
20. Object-Oriented Programming Fundamental Principles
20. Object-Oriented Programming Fundamental Principles20. Object-Oriented Programming Fundamental Principles
20. Object-Oriented Programming Fundamental Principles
 
Python avancé : Classe et objet
Python avancé : Classe et objetPython avancé : Classe et objet
Python avancé : Classe et objet
 
CLTL python course: Object Oriented Programming (1/3)
CLTL python course: Object Oriented Programming (1/3)CLTL python course: Object Oriented Programming (1/3)
CLTL python course: Object Oriented Programming (1/3)
 
Object oriented programming with python
Object oriented programming with pythonObject oriented programming with python
Object oriented programming with python
 
Python Objects
Python ObjectsPython Objects
Python Objects
 
Python Programming Essentials - M20 - Classes and Objects
Python Programming Essentials - M20 - Classes and ObjectsPython Programming Essentials - M20 - Classes and Objects
Python Programming Essentials - M20 - Classes and Objects
 
Real-time Programming in Java
Real-time Programming in JavaReal-time Programming in Java
Real-time Programming in Java
 
Python avancé : Interface graphique et programmation évènementielle
Python avancé : Interface graphique et programmation évènementiellePython avancé : Interface graphique et programmation évènementielle
Python avancé : Interface graphique et programmation évènementielle
 
4 pillars of OOPS CONCEPT
4 pillars of OOPS CONCEPT4 pillars of OOPS CONCEPT
4 pillars of OOPS CONCEPT
 
Object Oriented Programming with Java
Object Oriented Programming with JavaObject Oriented Programming with Java
Object Oriented Programming with Java
 
oops concept in java | object oriented programming in java
oops concept in java | object oriented programming in javaoops concept in java | object oriented programming in java
oops concept in java | object oriented programming in java
 
Java Tutorial
Java TutorialJava Tutorial
Java Tutorial
 
Top 100 SQL Interview Questions and Answers
Top 100 SQL Interview Questions and AnswersTop 100 SQL Interview Questions and Answers
Top 100 SQL Interview Questions and Answers
 
Object Oriented Programming Concepts
Object Oriented Programming ConceptsObject Oriented Programming Concepts
Object Oriented Programming Concepts
 

Semelhante a Oop’s Concept and its Real Life Applications

Sure interview algorithm-1103
Sure interview algorithm-1103Sure interview algorithm-1103
Sure interview algorithm-1103
Sure Interview
 
An Implementational approach to genetic algorithms for TSP
An Implementational approach to genetic algorithms for TSPAn Implementational approach to genetic algorithms for TSP
An Implementational approach to genetic algorithms for TSP
Sougata Das
 

Semelhante a Oop’s Concept and its Real Life Applications (20)

alexVAE_New.pdf
alexVAE_New.pdfalexVAE_New.pdf
alexVAE_New.pdf
 
Back propagation
Back propagationBack propagation
Back propagation
 
Control System Homework Help
Control System Homework HelpControl System Homework Help
Control System Homework Help
 
Java and Deep Learning
Java and Deep LearningJava and Deep Learning
Java and Deep Learning
 
Secrets of Supercomputing
Secrets of SupercomputingSecrets of Supercomputing
Secrets of Supercomputing
 
Lets build a neural network
Lets build a neural networkLets build a neural network
Lets build a neural network
 
ScalaDays 2013 Keynote Speech by Martin Odersky
ScalaDays 2013 Keynote Speech by Martin OderskyScalaDays 2013 Keynote Speech by Martin Odersky
ScalaDays 2013 Keynote Speech by Martin Odersky
 
Understanding Deep Learning & Parameter Tuning with MXnet, H2o Package in R
Understanding Deep Learning & Parameter Tuning with MXnet, H2o Package in RUnderstanding Deep Learning & Parameter Tuning with MXnet, H2o Package in R
Understanding Deep Learning & Parameter Tuning with MXnet, H2o Package in R
 
AlphaZero and beyond: Polygames
AlphaZero and beyond: PolygamesAlphaZero and beyond: Polygames
AlphaZero and beyond: Polygames
 
introduction to DL network deep learning.ppt
introduction to DL network deep learning.pptintroduction to DL network deep learning.ppt
introduction to DL network deep learning.ppt
 
introduction to deep Learning with full detail
introduction to deep Learning with full detailintroduction to deep Learning with full detail
introduction to deep Learning with full detail
 
Application of Google Earth Engine in Open NAPs
Application of Google Earth Engine in Open NAPsApplication of Google Earth Engine in Open NAPs
Application of Google Earth Engine in Open NAPs
 
Java and Deep Learning (Introduction)
Java and Deep Learning (Introduction)Java and Deep Learning (Introduction)
Java and Deep Learning (Introduction)
 
Sure interview algorithm-1103
Sure interview algorithm-1103Sure interview algorithm-1103
Sure interview algorithm-1103
 
Review: You Only Look One-level Feature
Review: You Only Look One-level FeatureReview: You Only Look One-level Feature
Review: You Only Look One-level Feature
 
Artificial Intelligence for Undergrads
Artificial Intelligence for UndergradsArtificial Intelligence for Undergrads
Artificial Intelligence for Undergrads
 
State Monad
State MonadState Monad
State Monad
 
Steve Dann (Amplified Robot): Escape Room VR
Steve Dann (Amplified Robot): Escape Room VRSteve Dann (Amplified Robot): Escape Room VR
Steve Dann (Amplified Robot): Escape Room VR
 
introduction to deeplearning
introduction to deeplearningintroduction to deeplearning
introduction to deeplearning
 
An Implementational approach to genetic algorithms for TSP
An Implementational approach to genetic algorithms for TSPAn Implementational approach to genetic algorithms for TSP
An Implementational approach to genetic algorithms for TSP
 

Último

Último (20)

Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
Online food ordering system project report.pdf
Online food ordering system project report.pdfOnline food ordering system project report.pdf
Online food ordering system project report.pdf
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdf
 
AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech students
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best ServiceTamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
 
💚Trustworthy Call Girls Pune Call Girls Service Just Call 🍑👄6378878445 🍑👄 Top...
💚Trustworthy Call Girls Pune Call Girls Service Just Call 🍑👄6378878445 🍑👄 Top...💚Trustworthy Call Girls Pune Call Girls Service Just Call 🍑👄6378878445 🍑👄 Top...
💚Trustworthy Call Girls Pune Call Girls Service Just Call 🍑👄6378878445 🍑👄 Top...
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptx
 
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptxS1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptxA CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
 
Jaipur ❤CALL GIRL 0000000000❤CALL GIRLS IN Jaipur ESCORT SERVICE❤CALL GIRL IN...
Jaipur ❤CALL GIRL 0000000000❤CALL GIRLS IN Jaipur ESCORT SERVICE❤CALL GIRL IN...Jaipur ❤CALL GIRL 0000000000❤CALL GIRLS IN Jaipur ESCORT SERVICE❤CALL GIRL IN...
Jaipur ❤CALL GIRL 0000000000❤CALL GIRLS IN Jaipur ESCORT SERVICE❤CALL GIRL IN...
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network Devices
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 
457503602-5-Gas-Well-Testing-and-Analysis-pptx.pptx
457503602-5-Gas-Well-Testing-and-Analysis-pptx.pptx457503602-5-Gas-Well-Testing-and-Analysis-pptx.pptx
457503602-5-Gas-Well-Testing-and-Analysis-pptx.pptx
 

Oop’s Concept and its Real Life Applications

  • 2. Clearing The ‘‘OOP’S’’ Concept ! – 1. Object - Instance of Class 2. Class - Blue print of Object 3. Encapsulation - Protecting our Data 4. Polymorphism - Different behaviors at different instances 5. Abstraction - Hiding our irrelevant Data 6. Inheritance - One property of object is acquiring to – another property of the object
  • 3. Class & Object – we have a Class of Laptop under which Lenovo G50, HP envy and Sony viao t5 represents individual Objects. In this context each Laptop Object will have its own, Model,Year of Manufacture, Colour, Speed,BatteryPower etc.,which form Properties of the Laptop class and the associated actions i.e., object functions like Start, Restart, Volume down /up form the Methods of Laptop Class. – The blueprint is the class...the Laptop is the object. The data of people using the laptop ,are data stored in the object's properties. Laptop Lenovo G50s HP Envy m6
  • 4. Abstraction & Encapsulation – Abstraction says, only show relevant details and rest all hide it. For Example, This Laptop allows you to connect to wifi and surf the internet but it doesn't show you how its actually done. – Abstraction & Encapsulation works hand in hand because Abstraction says what details to be made visible & Encapsulation provides the level of access right to that visible details.SO, while connecting to the wifi the access to other laptops are restricted for security purposes.
  • 5. Polymorphmism & Inheritance – Polymorphism can be defined as the ability of doing the same operation but with different type of input. The web cam on the Lenovo g50s is having a functionality of CameraClick(). Now same Lappie is having Butification mode available in camera, so functionality would be same but with mode. This type is said to be Static polymorphism or Compile time polymorphism. – Inheritance is the Ability to extend the functionality from base entity in new entity belonging to same group. This will help us to reuse the functionality which is defined before.
  • 6. Laptop Lenovo Laptop Lenovo G50s HP Envy m6 Laptop Lenovo G50s Laptop Lenovo HP Single level inheritance Multi-level inheritance Hierarchical inheritance Hybrid inheritance
  • 7. OOPS APPLICATIONS AND PROBLEMS 1. Engg. 2. Numerical Method 3. Text Processing 4. SCIENCE , GUI by Case study.
  • 8. The Problem statemen t is to make a cheap blind aid . ENGG..
  • 9. import RPi.GPIO as GPIO GPIO.setwarnings(False) # supress the system wornings GPIO.cleanup() # clean up the GPIO pins i.e make the GPIO pins to low GPIO.setmode(GPIO.BOARD) # Set the mode of numbering the pins. GPIO.setup(11, GPIO.IN) #GPIO pin 11 is the input. GPIO.setup(12, GPIO.IN) #GPIO pin 12 as input GPIO.setup(13, GPIO.IN) #GPIO pin 13 as input pin left = GPIO.input(11) fornt = GPIO.input(12) right = GPIO.input(13) #keep on polling for input pins while 1: {left = GPIO.input(11) front = GPIO.input(12) right = GPIO.input(13) if left == True or front == True or right == True: buzz(“Stuck! Move your stick randomly") if left == False and front == False and right == True: buzz("move either left ot front")
  • 10. elif left == False and front == True and right == False: buzz("move either left or right") elif left == False and front == True and right == True: buzz("move left") elif left == True and front == False and right == False: buzz("move either front or right") elif left == True and front == False and right == True: buzz("move front") elif left == True and front == True and right == False: buzz("move right") elif left == True and front == True and right == True: buzz("better to go back") else: buzz(" Checkup appaaratus") }
  • 11. Problem Statement: How many numbers need to be stored to save a symmetric NxN matrix in lower diagonal form? (This is our statement of problem: Note this may be a small piece of another larger problem).
  • 12.
  • 13.
  • 14. • Solution algorithm: In lower diagonal form, the number of values needed go as: 1x1=1, 2x2=3, 3x3=6 ... • To increase the dimension of the matrix from (N-1)x(N-1) to NxN requires N new values. Therefore our algorithm is the sum of integers from 1 to N Problem Statement: How many numbers need to be stored to save a symmetric NxN matrix in lower diagonal form?
  • 15. SOLUTION • Call the number of values we need num_elements. How do we compute this value? (a) Simplest num_elements = 1 + 2 + 3 + 4 + 5 + .... + N • Coded specifically for specific values of N. Not very flexible; could be many options depending on number of values of N possible. • PROGRAM- num_elements = 0; for i = 1:N ; num_elements = num_elements + i ; end ;
  • 17. The earths magnetic field is improper along some regions of the surface making navigation cumbersome for voyagers and travelers. SO Scientists prepared to study the magnetic field of earth from the 1500 hundreds itself. They found out that each element on earth had its on magnetic spin intensity. Thus it showed the direction of the Magnetic field of earth its time period. So they collect fallen metirots and old rocks and tested them . They ended up with bizarre results , having no correlation between them. Finally a Prof. GARY GCATZMAR from university of California ( in 1990’s) put all the data collected till date regarding this magnetic behavior of earth in a computer model . Dozen’s of equations describing, temp. , viscocity, diamension and so forth of the plant. Then he just let it run
  • 18.
  • 19. • To see the world evolve over 100,000 years of stimulated time. • We can see that the blue region and yellow region are the main two active classes ( 1. north pole, 2. south pole) and each one of its lines are its own objects. • These objects have properties and methods give by those “dozens of equations”. , along with stimulated time. • This proved to state that our planets Magnetic field will reverse for every 70,000 years.

Notas do Editor

  1. TV REMOTE EXAMPLE
  2. Before moving forward we have to understand the intensity of this application. The Vectors and matrices as the solution itself. The 3d position of a quadcopter in know by calculation the robot pose which is described by a transformation matrix. SO BY MULTIPLYING THE LOCAL CORDINATE MATRICES WITH THE GLOBAL CORDINATE MATRICES ,WE CAN GET THE EXXACT POSITION O FTHE ROBOT.
  3. Vectors can represent state of all kinds of systems , WE can use it to represent POPULATION DISTRIBUTION , GOOGLE PAGE RANK, PASSSWORD ENCRY, FACE MORPHING, IMAGE COMPR, SEARCHING.
  4. To see the world
  5. THE GUI OF REVERSAL EARTH’S MAGNETIC FIELD
  6. To see the world