Are there xdata and ydata properties for fill command?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ali
el 2 de Dic. de 2014
Comentada: Azzi Abdelmalek
el 2 de Dic. de 2014
Are there xdata and ydata properties for fill command? If not what is suitable to change their x and y components because i want to set them. Thanks
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 2 de Dic. de 2014
x=[0 10 10 5 0 ]
y=[0 0 2 1 2 ]
h=fill(x,y,'r')
get(h,'xdata')
get(h,'ydata')
2 comentarios
Azzi Abdelmalek
el 2 de Dic. de 2014
y=[0 0 2 5 2 ] % change y for example
set(h,'ydata',y)
Más respuestas (0)
Ver también
Categorías
Más información sobre Scope Variables and Generate Names en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!