How to Draw between specific points

1 次查看(过去 30 天)
Manora Mony
Manora Mony 2021-11-25
回答: C B 2021-11-25
Hello Dear all
can you help me in plot between specific points
ex if x = [ 6 8 10 ]
y = [ 20 30 40 ]
how to plot the curve that draw these points to these points only
thanks in advance....

回答(1 个)

C B
C B 2021-11-25
The three points you want to draw is (6,20),(8,30),(10,40) ?
or you want something else?
x = [ 6 8 10 ];
y = [ 20 30 40 ];
plot(x,y)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by