How to convert this to the filled 2-D contour plot?
1 回表示 (過去 30 日間)
古いコメントを表示
I would like to convert the figure below to the one like the filled 2-D contour plot, but don't know how.
This figure is created by:
scatter(X, Y, 500, Z,'filled');
I have attached the data (variables) I used, as well.
![2-D Scatter.PNG](https://www.mathworks.com/matlabcentral/answers/uploaded_files/221657/2-D%20Scatter.png)
FYI: What I meant here as the filled 2-D contour plot
Any comments will be welcomed. Thank you in advance.
0 件のコメント
採用された回答
KSSV
2019 年 5 月 29 日
load dataset.mat
m = 100 ; n = 100 ;
x = linspace(min(X),max(X),m) ;
y = linspace(min(Y),max(Y),n) ;
[Xi,Yi] = meshgrid(x,y) ;
Zi = griddata(X,Y,Z,Xi,Yi) ;
pcolor(Xi,Yi,Zi)
shading interp ;
その他の回答 (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!