How to plot a curve with 3 points?

48 Ansichten (letzte 30 Tage)
Vanessa Chimedza
Vanessa Chimedza am 28 Jan. 2022
Kommentiert: Vanessa Chimedza am 29 Jan. 2022
x= [1.2 1.5 1.9];
y=[5.5e15 9.9e15 7.8e15];
I want to plot a graph like this using the 3 points .How can I do it?
  2 Kommentare
Image Analyst
Image Analyst am 28 Jan. 2022
Three points are enough to define a quadratic, but not a Rayleigh-like curve like you're showing. You need more, or else a formula.
Vanessa Chimedza
Vanessa Chimedza am 29 Jan. 2022
Thank you.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Voss
Voss am 28 Jan. 2022
You can plot those three points and connect them with line segments using the plot() function:
x= [1.2 1.5 1.9];
y=[5.5e15 9.9e15 7.8e15];
plot(x,y)
It's not clear how the plot you want is related to those points. Maybe by fitting a curve?

Weitere Antworten (1)

Matt J
Matt J am 28 Jan. 2022
Bearbeitet: Matt J am 28 Jan. 2022
plot(x,y)
will always plot a curve. Whether you have enough points for the curve to have the intended shape is another question.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by