How to plot an overlay curve on the figure attached here.
3 ビュー (過去 30 日間)
古いコメントを表示
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
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/723314/image.jpeg)
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 件のコメント
採用された回答
Kevin Holly
2021 年 8 月 27 日
Use
hold on
then plot the graph.
plot(x,y)
3 件のコメント
Kevin Holly
2021 年 8 月 31 日
編集済み: Kevin Holly
2021 年 8 月 31 日
@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)
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!