How to plot 3 different data in contour or pcolor ?
1 回表示 (過去 30 日間)
古いコメントを表示
I have three different data
- Time steps = 1X108 (should be in X-axis)
- Data1 = 36X108 (should be in Y-axis(left))
- Data2 = 36X108 (should be display in colour/countour/pcolor)
Now I want to plot temporal plot (colour plot ) like the image I attached
6 件のコメント
Ameer Hamza
2020 年 5 月 26 日
something like this?
p = pcolor(dt, nw_bin, sizdist)
shading interp
xlabel('x');
ylabel('y');
colorbar
採用された回答
Ameer Hamza
2020 年 6 月 2 日
p = pcolor(dt, nw_bin, sizdist)
shading interp
xlabel('x');
ylabel('y');
colorbar
2 件のコメント
Ameer Hamza
2020 年 6 月 2 日
Try this code
Dt = repmat(dt, 36, 1);
[dt_grid, nw_bin_grid] = meshgrid(dt, mean(nw_bin, 2));
sizdist_grid = griddata(Dt(:), nw_bin(:), sizdist(:), dt_grid, nw_bin_grid);
contourf(dt_grid, nw_bin_grid, sizdist_grid)
shading interp
xlabel('x');
ylabel('y');
colorbar
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Contour Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!