How to plot an overlay curve on the figure attached here.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Nisar Ahmed
el 27 de Ag. de 2021
Comentada: Nisar Ahmed
el 1 de Sept. de 2021
Hello,
The code for the attached/copied figure is
figure, p = pcolor(b,a,c); p.EdgeColor = 'none'; axis ij; ylim([500 2500]); colorbar; title('abc');
ylabel('Time (ms)'); colormap(jet); grid on
I want to plot a straight line or a curve between (showing relation) a vs. c at x axis where b = 6000. Suppose the curve a vs c has same dimension like the data plotted here as p = pcolor(b,a,c);. How can I plot here.
0 comentarios
Respuesta aceptada
Kevin Holly
el 27 de Ag. de 2021
Use
hold on
then plot the graph.
plot(x,y)
3 comentarios
Kevin Holly
el 31 de Ag. de 2021
Editada: Kevin Holly
el 31 de Ag. de 2021
@Nisar Ahmed I'm not entirely sure what you are asking.
Are you trying to plot this?
plot(a,c(6000,:))
This would plot the values along the vertical line shown below.
figure
p = pcolor(b,a,c);
p.EdgeColor = 'none';
axis ij; ylim([500 2500]);
colorbar;
title('abc');
ylabel('Time (ms)');
colormap(jet);
grid on
hold on
xline(6000)
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots 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!