About 54,100 results
Open links in new tab
  1. graph - How can I plot y=mx+b in Matlab? - Stack Overflow

    Jan 31, 2013 · I was wondering if it is possible to plot a line of the form y = mx+b in Matlab? I used polyfit to get a 1x2 array that contains the slope and intercept. Here is what I have so far: lineFit = pol...

  2. plot - Plotting multiple equations in MATLAB - Stack Overflow

    As is stated in the comments MATLAB doesn't recommend the use of ezplot. If you're using MATLAB R2017b, then you can use fimplicit. If you don't then you can use both fplot and plot as an …

  3. graph - How to plot this equation in matlab - Stack Overflow

    How to plot this equation in matlab Asked 13 years ago Modified 5 years, 8 months ago Viewed 24k times

  4. How to plot a circle in Matlab? - Stack Overflow

    Mar 22, 2015 · 6 I would like to know how can I graph circles in Matlab knowing the center and radius? I have tried circles() which does not seem to work because my Matlab version does not have it. I know …

  5. Plotting Implicit Algebraic equations in MATLAB - Stack Overflow

    Apr 27, 2010 · I wish to plot implicit functions in MATLAB. Like x^3 + xy + y^2 = 36 , equations which cannot be made into simple parametric form. Is there any simple method ?

  6. plot - draw ellipse and ellipsoid in MATLAB - Stack Overflow

    The answers from Jacob and Amro are very good examples for computing and plotting points for an ellipse. I'll address some easy ways you can plot an ellipsoid... First, MATLAB has a built-in function …

  7. How to plot a nonlinear equation in matlab - Stack Overflow

    y=linspace(0,3,7); Note that the last form will make it easy for you to produce a finer graph of your function (since plot by default will draw you a piecewise linear function, i.e. connect the points with …

  8. matlab - Plotting wave equation - Stack Overflow

    Dec 24, 2014 · Matlab plots the graph on a figure with a limited number of screen pixels. The graphical rendering involves some kind of downsampling, if the matrix that has to be represented is large …

  9. How can I plot a 3D-plane in Matlab? - Stack Overflow

    Nov 20, 2012 · According to Matlab documentation (2nd line for fill3) "fill3 (X,Y,Z,C) fills three-dimensional polygons. X, Y, and Z triplets specify the polygon vertices". I did made a mistake though …

  10. MATLAB curve fit display equation on graph - Stack Overflow

    Sep 11, 2013 · Is there a way to display the curvefit equation on the graph produced without having to write it down myself manually every time? By GUI or command-line, anything is okay. Any hacks, …