How to plot all curves according to their XY coordinates?

2 ビュー (過去 30 日間)
Nisar Ahmed
Nisar Ahmed 2021 年 8 月 14 日
コメント済み: Nisar Ahmed 2021 年 8 月 27 日
Hi,
In the figure attached below, each VT curve have XY cordinates. I want to plot these curves according to the XY coordinate position. How I can write my figure code. Suppose the X nd Y coordinates of first line (left side) are ''XY location X = 458158.62, Y = 6526223.5''. Similarly all the other curves have XY location values. How I can incorporate XY positions in such a way that these plots are according to respective coordinates.
  9 件のコメント
Nisar Ahmed
Nisar Ahmed 2021 年 8 月 27 日
Now I have z file as well. Please see the attached data:
I want to plot imagesc(d, TWTi, vp). I mean TWTi along y axis and is common for all vp curves. while d is the distance between each vp curve.
Can you please help me to produce a figure?
Adam Danz
Adam Danz 2021 年 8 月 27 日
Sorry, but I really don't know what the question is. If you want to plot imagesc(d, TWTi, vp), what's preventing you from doing so? And how does that relate to the line plot in your question?

サインインしてコメントする。

採用された回答

Chunru
Chunru 2021 年 8 月 27 日
編集済み: Chunru 2021 年 8 月 27 日
load d_data.mat
load TWTi_data.mat
load vp_data_plotting.mat
vpmax = max(vp(:));
vpmin = min(vp(:));
vpave = mean(vp(:));
deltad = (max(d)-min(d))/length(d);
v = (vp - vpave)/(vpmax-vpmin) * deltad * 2 + d;
subplot(121)
plot(v, TWT1i);
set(gca, 'YDir', 'reverse');
xlabel('d');
ylabel('z');
subplot(122);
p = pcolor(d, TWT1i, vp);
p.EdgeColor = 'none';
axis ij
colorbar
  5 件のコメント
Chunru
Chunru 2021 年 8 月 27 日
For example:
colormap(jet(512))
Nisar Ahmed
Nisar Ahmed 2021 年 8 月 27 日
thanks

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by