Matlab Introduction.

Slides:



Advertisements
Similar presentations
Inverse Trigonometric Functions
Advertisements

The Inverse Trigonometric Functions Section 4.2. Objectives Find the exact value of expressions involving the inverse sine, cosine, and tangent functions.
TRIGONOMETRY OF RIGHT TRIANGLES. TRIGONOMETRIC RATIOS Consider a right triangle with as one of its acute angles. The trigonometric ratios are defined.
7.3 Trigonometric Functions of Angles. Angle in Standard Position Distance r from ( x, y ) to origin always (+) r ( x, y ) x y  y x.
Pre calculus Problem of the Day Homework: p odds, odds, odds On the unit circle name all indicated angles by their first positive.
Hyperbolic Functions.
Unit 34 TRIGONOMETRIC FUNCTIONS WITH RIGHT TRIANGLES.
Trigonometric Functions on Any Angle Section 4.4.
Inverse Hyperbolic Functions. The Inverse Hyperbolic Sine, Inverse Hyperbolic Cosine & Inverse Hyperbolic Tangent.
Introduction to Matlab. Entering Commands Constants and Functions >> pi ans = >> eps ans = e-016 >> sin(pi/2) ans = 1 >> log(1000) ans =
5.1 Inverse sine, cosine, and tangent
Inverse Trigonometric Functions The definitions of the inverse functions for secant, cosecant, and cotangent will be similar to the development for the.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. A Concise Introduction to MATLAB ® William J. Palm III.
3.5 – Derivative of Trigonometric Functions
Aim: What are the reciprocal functions and cofunction? Do Now: In AB = 17 and BC = 15. 1) Find a) AC b) c) d) 2) Find the reciprocal of a)b) c) A B C.
12-2 Trigonometric Functions of Acute Angles
Bell Work Find all coterminal angles with 125° Find a positive and a negative coterminal angle with 315°. Give the reference angle for 212°.
13.7 (part 2) answers 34) y = cos (x – 1.5) 35) y = cos (x + 3/(2π)) 36) y = sin x –3π 37) 38) y = sin (x – 2) –4 39) y = cos (x +3) + π 40) y = sin (x.
4.2 Trigonometric Functions (part 2) III. Trigonometric Functions. A) Basic trig functions: sine, cosine, tangent. B) Trig functions on the unit circle:
Graphs of the Trig Functions Objective To use the graphs of the trigonometric functions.
1 What you will learn  How to find the value of trigonometric ratios for acute angles of right triangles  More vocabulary than you can possibly stand!
Section 5.3 Evaluating Trigonometric Functions
Visual Basic I Programming
Reciprocal functions secant, cosecant, cotangent Secant is the reciprocal of cosine. Reciprocal means to flip the ratio. Cosecant is the reciprocal of.
Objectives : 1. To use identities to solve trigonometric equations Vocabulary : sine, cosine, tangent, cosecant, secant, cotangent, cofunction, trig identities.
or Keyword: Use Double Angle Formulas.
Lesson 46 Finding trigonometric functions and their reciprocals.
BRITTANY GOODE COURTNEY LEWIS MELVIN GILMORE JR. JESSICA TATUM Chapter 5 Lesson 2.
Section 7.2 Addition and Subtraction Formulas Objectives: To understand how to apply the addition and subtraction formulas.
SFM Productions Presents: Another saga in your continuing Pre-Calculus experience! 4.6 Graphs of other Trigonometric Functions.
Bellringer 3-28 What is the area of a circular sector with radius = 9 cm and a central angle of θ = 45°?
Section 4.2 The Unit Circle. Has a radius of 1 Center at the origin Defined by the equations: a) b)
Objective: Finding trigonometric functions of any angle. Warm up Make chart for special angles.
Some Useful MATLAB Functions
Right Triangle Trigonometry
Lesson Objective: Evaluate trig functions.
The Other Trigonometric Functions
Section 4.2 The Unit Circle.
Introduction to the Six Trigonometric Functions & the Unit Circle
Table of Contents 5. Right Triangle Trigonometry
Trigonometric Functions: The Unit Circle Section 4.2
HW: Worksheet Aim: What are the reciprocal functions and cofunction?
The Unit Circle Today we will learn the Unit Circle and how to remember it.
Trigonometric Functions: The Unit Circle 4.2
Pre-Calc: 4.2: Trig functions: The unit circle
SEC 8.2: TRIGONOMETRIC INTEGRALS
SEC 8.2: TRIGONOMETRIC INTEGRALS
8/8/17 Warm Up Solve the inequality.  .
? Hyperbolic Functions Idea
SEC 8.2: TRIGONOMETRIC INTEGRALS
2. The Unit circle.
Right Triangle Ratios Chapter 6.
Aim: What are the reciprocal functions and cofunction?
Warm-Up: Give the exact values of the following
Introduction to MATLAB
Introduction to MATLAB
Graphs of Other Trigonometric Functions 11-2
Right Triangle Ratios Chapter 6.
Graph of Secant, Cosecant, and Cotangent
The Inverse Trigonometric Functions (Continued)
Graphs of Other Trigonometric Functions 14-2
SIX TRIGNOMETRIC RATIOS
Math /4.4 – Graphs of the Secant, Cosecant, Tangent, and Cotangent Functions.
Trigonometric Functions: Unit Circle Approach
Trigonometric Functions: The Unit Circle 4.2
Finney Weir Giordano PRELIMINARY Finney Weir Giordano, Thomas’ Calculus, Tenth Edition © Addison Wesley Longman All rights reserved.
WArmup Rewrite 240° in radians..
Section 2 – Trigonometric Ratios in Right Triangles
θ hypotenuse adjacent opposite θ hypotenuse opposite adjacent
Academy Algebra II THE UNIT CIRCLE.
Presentation transcript:

Matlab Introduction

Agenda MATLAB Basics MATLAB Functions, Operators, and Commands Help, Demo MATLAB Functions, Operators, and Commands Graphics 2D graphics (plot, stem) Programming Flow Control Scripts and Functions

Matlab Basics command window command history

Matlab Basics workspace

Matlab Basics – Help Textual help >> help log LOG Natural logarithm. LOG(X) is the natural logarithm of the elements of X. Complex results are produced if X is not positive. See also log1p, log2, log10, exp, logm, reallog. Overloaded functions or methods (ones with the same name in other directories) help gf/log.m help distributed/log.m help fints/log.m help designdev/log.m help sym/log.m Reference page in Help browser doc log

Matlab Basics – Help Help document >> doc log

Matlab Demo >> demo

MATLAB Functions Trigonometric Functions: sin - sine sinh - hyperbolic sine asin - inverse sine asinh - inverse hyperbolic sine cos - cosine cosh - hyperbolic cosine acos - inverse cosine acosh - inverse hyperbolic cosine tan - tangent tanh - hyperbolic tangent atan - inverse tangent atan2 atanh - inverse hyperbolic tangent sec - secant sech - hyperbolic secant asec - inverse secant asech - inverse hyperbolic secant csc - cosecant csch - hyperbolic cosecant acsc - inverse cosecant acsch - inverse hyperbolic cosecant cot - cotangent coth - hyperbolic cotangent acot - inverse cotangent. acoth - inverse hyperbolic cotangent.

MATLAB Functions Exponential Functions: Complex Functions: exp - exponential log - natural logarithm log10 - common logarithm sqrt - square root Complex Functions: abs - absolute value angle - phaseangle conj - complex conjugate imag - complex imaginary part real - complex real part

Matlab Functions

Matlab Operators

Matlab Operators

Matlab Commands General purpose commands To see more type >> helpwin

Programming – Flow Control if switch and case

Programming – Flow Control for while

Programming – Flow Control continue break

Programming – Scripts and Functions