1 / 59

Built-in MATLAB Functions Chapter 3

Built-in MATLAB Functions Chapter 3. Objectives. After studying this chapter you should be able to: Use a variety of common mathematical functions Understand and use trigonometric functions in MATLAB Compute and use statistical and data analysis functions

robbinr
Download Presentation

Built-in MATLAB Functions Chapter 3

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Built-in MATLAB FunctionsChapter 3

  2. Objectives After studying this chapter you should be able to: • Use a variety of common mathematical functions • Understand and use trigonometric functions in MATLAB • Compute and use statistical and data analysis functions • Generate uniform and Gaussian random-number matrices • Understand the computational limits of MATLAB • Recognize and be able to use the special values and functions built into MATLAB

  3. 3.1 Using Built-in Functions MATLAB uses function names consistent with most major programming languages For example • sqrt • sin • cos • log

  4. Function Input can be either scalars or matrices

  5. Function Input can be either scalars or matrices

  6. Using Predefined Functions • Functions consist of • Name • Input argument(s) • Output In MATLAB sqrt(4) sqrt (x) = result ans = 2

  7. Some functions require multiple inputs • Remainder function returns the remainder in a division problem • For example the remainder of 10/3, is 1

  8. Some functions return multiple results • size function determines the number of rows and columns

  9. You can assign names to the output The variable names are arbitrary – choose something that makes sense in the context of your problem

  10. Nesting Functions

  11. 3.2 Using the Help Feature • There are functions for almost anything you want to do • Use the help feature to find out what they are and how to use them • From the command window • From the help selection on the menu bar

  12. From the Command Window

  13. From the Help Menu

  14. The windowed help function can also be accessed using the doc command

  15. 3.3 Elementary Math Functions 3.3.1 Common Computations • abs(x) absolute value • sign(x) plus or minus • exp(x) ex • log(x) natural log • log10(x) log base 10 As in most computer languages, log(x) is the syntax for the natural log – there is no ln function defined in MATLAB

  16. 3.3.2 Rounding Functions • round(x) • fix(x) • floor(x) • ceil(x)

  17. 3.3.3 Discrete Mathematics • factor(x) • gcd(x,y) greatest common denominator • lcm(x) lowest common multiple • rats(x) represent x as a fraction • factorial(x) • nchoosek(n,k) • primes(x) • isprime(x)

  18. 3.4 Trigonometric Functions • sin(x) sine • cos(x) cosine • tan(x) tangent • asin(x) inverse sine • sinh(x) hyperbolic sine • asinh(x) inverse hyperbolic sine • sind(x) sine with degree input • asind(x) inverse sin with degree output

  19. 3.5 Data Analysis Functions • max(x) • min(x) • mean(x) • median(x) • sum(x) • prod(x) • sort(x) • sortrows(x) • std(x) • var(x)

  20. 3.5.1 Max and Min When the max function is used with a vector (either a row or a column), it returns the maximum value in the vector

  21. When x is a matrix, the max is found for each column

  22. max value index number where the max value occurs The max function can also be used to determine where the maximum occurs

  23. Vector of maximums Vector of row numbers

  24. 3.5.4 Sorting Values It’s easy to sort data in MATLAB, using the sort function The default is to sort in ascending order

  25. To sort in descending order, just add the word ‘descend’ in the second input field

  26. MATLAB is column dominant, so when sort is used with a 2-D matrix, each column is sorted in ascending order

  27. The sortrows function allows you to sort entire rows, based on the value in a specified column. The default sorting column is #1

  28. In this example the matrix is sorted in ascending order, based on the second column

  29. Notice that this is a different strategy than that used by the sort function! To sort based on descending order, place a negative sign in front of the column number

  30. 3.5.5 Determining Matrix Size • size(x) number of rows and columns • length(x) biggest dimension • numel(x) total number of elements

  31. 3.5.6 Variance and Standard Deviation • std(x) • var(x)

  32. Standard Deviation

  33. 3.6 Random Numbers • rand(x) • Returns an x by x matrix of random numbers between 0 and 1 • rand(n,m) • Returns an n by m matrix of random numbers • These random numbers are evenly distributed

  34. If you create a very large matrix of random numbers using the rand function, the average value will be 0.5 Notice that we created a 1 by 107 matrix, which required 2 inputs (rand(1,10e6)). If we had entered a single value (rand(10e6)) the result would have been a 1x107 by 1x107 matrix.

  35. Gaussian Random numbers • randn(n) • Also called a normal distribution • Generates numbers with a mean of 0 and a standard deviation of 1

  36. First generate an array of 10 million gaussian random numbers Use MATLAB to take the mean, and notice that it is very close to 0 Use MATLAB to find the standard deviation, and notice that it is very close to 1

  37. The hist function creates a histogram of the input data

  38. To generate random numbers between other bounds… a and b are the upper and lower bounds r is the array of random numbers

  39. Although the average is the same for each of these data sets, they have a different standard deviation

  40. More about Manipulating Matrices • M(:) • Converts a two dimensional matrix to a single column

More Related