how to make a 2d contour graph
古いコメントを表示
How to make a 2d colour contour graph. I attached two files.
from the excel file:
x = blue values
y = yellow colour
z = green colour
I tried matlab programme using txt book with same data:
filename = 'a.txt';
A = importdata(filename);
x = A(:,1);
y = A(:,2);
[xx,yy]=meshgrid(x,y);
z=A(:,3);
[zz]=meshgrid(z);
figure
contour(x,y)
5 件のコメント
madhan ravi
2019 年 4 月 26 日
編集済み: madhan ravi
2019 年 4 月 26 日
contourf(xx,you,zz) % ? Perhaps
Adam Danz
2019 年 4 月 26 日
madhan ravi
2019 年 4 月 26 日
編集済み: madhan ravi
2019 年 4 月 26 日
Agree with Adam , meant contourf() but then typed the other.
Adam Danz
2019 年 4 月 26 日
contour() is also a possibility, though. Depends if you want fill or not.
Amit Kumar
2019 年 4 月 29 日
回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Contour Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!