Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 827377
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T03:33:54+00:00 2026-05-15T03:33:54+00:00

>> fplot(fh,[-2 4]) ??? Undefined function or variable e. Error in ==> myfun at

  • 0
>> fplot(fh,[-2 4])
??? Undefined function or variable "e".

Error in ==> myfun at 3
Y(:,2) = e(:).^x;
Error in ==> fplot at 102
x = xmin; y = feval(fun,x,args{4:end});

I tried to plot two function using this m file.

function Y = myfun(x)
Y(:,1) = 3*x;
Y(:,2) = e(:).^x;
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T03:33:55+00:00Added an answer on May 15, 2026 at 3:33 am

    As Donnie mentioned in their comment, the variable e is undefined in your m-file.

    If you have defined e elsewhere, you have to pass it to myfun so that the function knows its value. Since fplot does not accept plotting functions with more than one input value, you need to pass it an anonymous function.

    First, you need to change the definition of myfun to include e as input:

    function Y = myfun(x,e)
    Y(:,1) = 3*x;
    Y(:,2) = e(:).^x;
    

    Then, you create your function handle fh like this (fh still only takes one input, Matlab uses the value of e as it was defined in the workspace at the time you create the function handle):

    fh = @(x)(myfun(x,e))
    

    Finally, you can call fplot like you used to

    fplot(fh,[-2 4])
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using Flot and would like to associate text with each individual plot point
I have two pages that use the flot jquery plugin, and they both work
I'm using Flot to plot a line graph and my data set is a
I have a jQuery flot chart with this code: $(table.statics).each(function() { var colors =
If I bind a function to flot's plotselected event, is there a way to
I am using the FLOT charting library to plot calories consumed over time. I
I'm trying to use Flot to plot a graph with dates. I've followed the
Can I plot charts like this http://developer.yahoo.com/yui/examples/charts/charts-rotation.html using flot ? I mean, I have
I am creating pie charts with JSON and Flot. The JS function to create
In flot , how can I create a pie chart where each wedge is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.