Introduction to MATLAB for Mathematical Capabilities

Introduction to MATLAB for Mathematical Capabilities
Slide Note
Embed
Share

MATLAB is a powerful mathematical and graphical software package utilized within academic settings like the Mathematics Department at King Saud University. This comprehensive guide introduces the MATLAB desktop environment, its capabilities as a calculator, handling variables, basic algorithms, and an overview of m-file functions. The software provides built-in functions for various numerical operations, making it a valuable tool for mathematical and programming tasks.

  • MATLAB
  • Mathematical Software
  • Graphical Capabilities
  • Calculator
  • Programming Functions

Uploaded on Apr 12, 2025 | 0 Views


Download Presentation

Please find below an Image/Link to download the presentation.

The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author.If you encounter any issues during the download, it is possible that the publisher has removed the file from their server.

You are allowed to download the files provided on this website for personal or commercial use, subject to the condition that they are used lawfully. All files are the property of their respective owners.

The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author.

E N D

Presentation Transcript


  1. Interduction to MATLAB Manal Alotaibi Mathematics department College of science King saud university

  2. Content What is MATLAB? The MATLAB desktop invironment. MATLAB as calculator. Variables. Algorithm Interduction to m-file function. MATLAB

  3. Outline What is MATLAB? The MATLAB desktop invironment. MATLAB as calculator. Variables. Algorithm Interduction to m-file function. MATLAB

  4. MATLAB is a mathematical and graphical software package with numerical, graphical and programming capabilities. it has built-in functions to perform many operations. MATLAB

  5. Outline What is MATLAB? The MATLAB desktop invironment. MATLAB as calculator. Variables. Algorithm Interduction to m-file function. MATLAB

  6. MATLAB

  7. Command window: Type your instructions here and press ENTER to execute them. MATLAB

  8. Example: Declare a column matrix with values 1,2 and 3. MATLAB

  9. Command history: a list of instructions executed by MATLAB is shown here. MATLAB

  10. Workspace: shows a list of variables created by MATLAB. As you can see, the value of aaa is shown. MATLAB

  11. Another way to create a variable Is to press this button. MATLAB

  12. MATLAB will prompt you to enter the variable name. MATLAB

  13. As you can see, the variable name has been changed to bbb. MATLAB

  14. 2) Or by double clicking on bbb. To assign a value to bbb, you can do it in two ways: 1) Using the command window. MATLAB

  15. To clear all variables from memory and close all figures, use the clear, close all command. MATLAB

  16. As you can see, all workspace variables are deleted when you execute this command. MATLAB

  17. To clear the command window, use the clc (clear console) command. MATLAB

  18. As you can see, all console entries are deleted when you execute this command. MATLAB

  19. If you want to see help, you can type help at the command window. MATLAB

  20. Outline What is MATLAB? The MATLAB desktop invironment. MATLAB as calculator. Variables. Algorithm Interduction to m-file function. MATLAB

  21. Operators a+b a-b a*b a/b + - * / \ ^ addition subtraction multiplication Division(left) Division(right) a\b (b a) a^b power MATLAB

  22. Operator precedence rules 1. () parentheses. 2. ^ power. 3. - negation. 4. */ \ all multiplication and division. 5. + - addition and subtraction. MATLAB

  23. Examples >> x=6*5 x= >> 6*5 ans = 30 >> 17/5 ans = 3.4000 >> ans ans = 3.4000 30 >> y=17/5; >> y y= 3.4000 >> z=x+y z= 33.4000 >> who Your variables are: x y z MATLAB

  24. Some functions in MATLAB exp(x) sin(x) asin(x) log(x) log10(x) sqrt(x) abs(x) sum(x) ex sin x sin-1x ln x log x pi i,j NaN Inf imaginary unit Not-a-Number |x| ix MATLAB

  25. Example >>y=x^0.5; >>y=x^(1/2); >>y=sqrt(x); = y x MATLAB

  26. Outline What is MATLAB? The MATLAB desktop invironment. MATLAB as calculator. Variables. Algorithm Interduction to m-file . MATLAB

  27. Variables Creating Variables: Names Can be any string of upper and lower case letters along with numbers and underscores but it must begin with a letter Reserved names are IF, WHILE, ELSE, END, SUM, etc. Names are case sensitive Value This is the data the is associated to the variable; the data is accessed by using the name. Variables have the type of the last thing assigned to them Re-assignment is done silently there are no warnings if you overwrite a variable with something of a different type. MATLAB

  28. Outline What is MATLAB? The MATLAB desktop invironment. MATLAB as calculator. Variables. Algorithm Interduction to m-file MATLAB

  29. Definition of algorithm An algorithm is the sequence of steps needed to solve a problem. MATLAB

  30. Outline What is MATLAB? The MATLAB desktop invironment. MATLAB as calculator. Variables. Algorithm Interduction to m-file . MATLAB

  31. To create an m-file, 1) type edit at the command window, or 2) Press this button. MATLAB

  32. The previous command will display the editor window. The editor creates an m-file that can be used to write your MATLAB programs. MATLAB

  33. To execute a program, press the RUN button. MATLAB

  34. End the first part

More Related Content