Plot Parabola from -20 to 20 in MATLAB

  • Context: MATLAB 
  • Thread starter Thread starter mishal
  • Start date Start date
  • Tags Tags
    Matlab
Click For Summary
SUMMARY

The discussion provides a straightforward solution for plotting the parabola defined by the equation y = x^2 + 2x + 3 in MATLAB for the range -20 < x < 20. The code snippet shared is: x = -20:0.01:20; y = x.^2 + 2*x + 3; plot(x,y);, which can be directly executed in the MATLAB Command Prompt. Additionally, users are encouraged to utilize MATLAB Help and the MathWorks website for further resources and .m files related to MATLAB programming.

PREREQUISITES
  • Basic understanding of MATLAB programming
  • Familiarity with plotting functions in MATLAB
  • Knowledge of polynomial equations
  • Experience with MATLAB Command Prompt
NEXT STEPS
  • Explore MATLAB Help documentation for advanced plotting techniques
  • Learn about MATLAB's built-in functions for mathematical modeling
  • Investigate the use of MATLAB for solving polynomial equations
  • Research additional resources on MATLAB Central for community-contributed .m files
USEFUL FOR

This discussion is beneficial for students, educators, and professionals who are learning or teaching MATLAB, particularly those interested in mathematical plotting and polynomial functions.

mishal
Messages
3
Reaction score
0
Plot the parabola which has the equation y = x^2+2x+3 for -20<x<20 using Matlab.
 
Physics news on Phys.org
need the solution
 
Hey, mishal,

This is the simple solution to your problem:
x = -20:0.01:20;
y = x.^2 + 2*x + 3;
plot(x,y);

You can copy and paste this into your Matlab Command Prompt. If you need more information, feel free to ask me.

By the way, you can search Matlab Help, that's very good source for self learning. And you can go to: http://www.mathworks.com/matlabcentral/index.html" to find more .m files that might help you.

PS: Mathematics is a suitable source for this kind of question. (Or Homework or Coursework questions)
 
Last edited by a moderator:
TChi, this is a particularly simple question, so what you did isn't particularly egregious, but we here at PhysicsForums try to help people work through their problems (especially when it's homework). Homework should be in the Homework section (there's an Engineering and CompSci section), but there's also a Computer Science and Programming subforum as well (and there's a Mathematical Software section within that--for things like MATLAB, Octave and/or Mathematica)

EDIT: mods will occasionally delete responses that out-and-out answer questions (that should be answered by the question asker), and move homework to appropriate subforums. Not to snerk, just to let you know.
 
hey thankyou so much for your kind information
 

Similar threads

  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 11 ·
Replies
11
Views
3K
  • · Replies 32 ·
2
Replies
32
Views
4K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 1 ·
Replies
1
Views
5K