Contour plots in terms of 3 variables
1 回表示 (過去 30 日間)
古いコメントを表示
Hi all - I hope someone can help me.
I have three data sets:
- wind speed
- wind direction
- error.
What I'd like to do is to create a contour plot that shows values of error in terms of the wind speed and direction - in so far that the diagram will illustrate where the greater values of error are with respect to both wind speeds and direction. Can any one help??
回答 (3 件)
the cyclist
2012 年 2 月 10 日
Use the contour() function. Type "doc contour" into MATLAB for details.
5 件のコメント
the cyclist
2012 年 2 月 14 日
I think what you want is the colorbar command. Just run that command after your code.
Image Analyst
2012 年 2 月 12 日
Why not use TriScatteredInterp() to turn your set of (x,y,z) triplets into an image, and display it as an image? That would probably be an insightful visualization and allow you to see patterns. Or you can do a surface plot. There's a nice demo for that in the help for TriScatteredInterp().
0 件のコメント
Sean de Wolski
2012 年 2 月 14 日
It sounds like you might be interested in a streamtube or streamribbon plot.
doc streamribbon
doc streamtube
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!