Download Article
A comprehensive guide to plotting a function in MATLAB
Download Article

This article is meant to inform new MATLAB users how to plot an anonymous function. This method requires little experience in programming, so dive in with step one to get started.

  1. 1
    Open MATLAB on your computer.
  2. Anonymous functions are not stored to any program file. They can accept multiple inputs and return outputs. You must know what function you want to graph because you need to let MATLAB know what independent variables your function has before you write the function. Some examples of anonymous functions include:
    • Trigonometric functions
    • Rational functions
    • Polynomials
    • Logarithmic functions
    Advertisement
  3. You will want to know what interval you want your function to be graphed on because it is entered before you graph the function. It is a good idea to know your interval before you begin typing. Intervals always have lower and upper bounds. Entering the interval will be explained later.
  4. 4
    Click inside the command window. This is where you will place individual statements. Inside the command window you can assign values to variables, assign functions to variables, plot functions etc.
  5. 5
    Name the function. The first thing you will begin to type is the name of the function. Typical names for functions are “f” and “g”. However, you can name the function anything that you want. The name of the function must start with a letter. It should not contain any special characters. It may contain numbers as long as the first character is a letter.
  6. 6
    Set up independent variables. Directly after the function you will set up the independent variables. You do this by putting an equal sign “=” after the function name. Then put a space and an “@”. Immediately after the “@” you will put an open parenthesis “(“. Now you can start listing all the of the independent variables. If your independent variable is “x”, it should look like this: “@(x)”. If you wish to have more independent variables, then you put a comma after each variable. For example, @(x,y).
  7. 7
    Type your function. After you set up the independent variables you can type the function. It is a good idea to put a space in between them so your code looks neat. Here are some basic tips to help type functions in MATLAB.
    • Cosine- cos(x)
    • Sine-sin(x)
    • Tangent-tan(x)
    • Cosine(in degrees)-cosd(x)
    • Sine(in degrees)-sind(x)
    • Tangent(in degrees)-tand(x)
    • Multiplication- “2*x”
    • Division- “2/x”
    • Addition- “2+x”
    • Subtraction- “2-x
    • Exponent- x^2
    • e- exp(x)
    • Example of how to type a polynomial - "2*x^2+3*x+7"
  8. 8
    Press Enter. This saves the function to the variable. After you press enter, the function should come up on the next line. If you get an error, then you may have typed something in wrong.
  9. 9
    Plot the function. On the next line you will write a statement to plot the function. To plot an anonymous function, you must use “fplot” even if your function is not named "f". The proper syntax for fplot is: fplot(name of function, interval). So you will basically type in the name of the function first and then type in the interval. The interval is written [lower bound upper bound]. For example: fplot(f,[0 2*pi]). If you do not know the interval, then you can just put “fplot(f)”. MATLAB will pick the interval. After you type this, then you will press enter again.
  10. 10
    Click back in the command window. Make sure you click back in the command window. Do not exit out of the graph. If you exit out of the graph, then you will not be able to add to the graph.
  11. 11
    Add label axes and title. After each time you label an axes or the title, you will hit Enter. Each time, the graph window will change. Make sure your cursor is still in the command window. Here is how you give a name to each:
    • x-axis: xlabel('name')
    • y-axis: ylabel('name')
    • title:title('name').
  12. 12
    Save the graph. If you want to save the graph, click file on the graph window. Then press "save as" and choose where you want to save it.
  13. Advertisement

Expert Q&A

Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit
Advertisement

Tips

Submit a Tip
All tip submissions are carefully reviewed before being published
Thanks for submitting a tip for review!

Things You'll Need

  • Computer
  • MATLAB

About This Article

wikiHow is a “wiki,” similar to Wikipedia, which means that many of our articles are co-written by multiple authors. To create this article, 13 people, some anonymous, worked to edit and improve it over time. This article has been viewed 61,493 times.
How helpful is this?
Co-authors: 13
Updated: May 26, 2022
Views: 61,493
Categories: MATLAB
Thanks to all authors for creating a page that has been read 61,493 times.

Is this article up to date?

Advertisement