Borrar filtros
Borrar filtros

How to plot a continuous graph from distinct points.

3 visualizaciones (últimos 30 días)
sourav  malla
sourav malla el 27 de Jun. de 2019
Comentada: Steven Lord el 29 de Oct. de 2019
How to plot a continuous graph by joining the distinct points created by two array of unqual length.
Suppose:-
x=[1 3 5 6]
y=10
plot(x,y,'o')
here you will get some distinct point graph but i want a continuous one.
Help me that.
thanks

Respuesta aceptada

Torsten
Torsten el 27 de Jun. de 2019
x=[1 3 5 6];
y=10*ones(size(x));
plot(x,y,'o')
  1 comentario
sourav  malla
sourav malla el 27 de Jun. de 2019
Thanks it worked out but you need to remove the marker..
Thanks

Iniciar sesión para comentar.

Más respuestas (1)

Menatallah Ayman
Menatallah Ayman el 29 de Oct. de 2019
s(x) = Im{e(−x+i2πx)}.
  1 comentario
Steven Lord
Steven Lord el 29 de Oct. de 2019
This doesn't seem related to the original question. Please ask it as a separate question and include more details about what you're trying to do and/or the problem you're experiencing.

Iniciar sesión para comentar.

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by