plot curve take care of edges

1 Ansicht (letzte 30 Tage)
ahmed youssef
ahmed youssef am 26 Dez. 2016
Bearbeitet: Image Analyst am 26 Dez. 2016
I am plotting curve it is increased from zero to 1 with small slop and saturated at 1. I need to know "plot" command that take care of beginning and ending curve.
  2 Kommentare
KSSV
KSSV am 26 Dez. 2016
If you have x and y coordinates, plot will plot it. Plot will take care depending on your data.
ahmed youssef
ahmed youssef am 26 Dez. 2016
someone shows me command other than plot to show how it rise and saturated

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Image Analyst
Image Analyst am 26 Dez. 2016
Simply use plot(). Here's an example:
x = linspace(0, pi/2, 500);
y = 1.2*sin(x);
y(y>1) = 1;
plot(x, y, 'b-', 'LineWidth', 2);
grid on;
  2 Kommentare
ahmed youssef
ahmed youssef am 26 Dez. 2016
someone shows me command other than plot to show how it rise and saturated
Image Analyst
Image Analyst am 26 Dez. 2016
Bearbeitet: Image Analyst am 26 Dez. 2016
There are other ways (functions) to plot, like bar(), stem(), area(), etc. Pick whichever one gives you the appearance you like.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by