How to plot a contour in a fast scatter plot
4 次查看(过去 30 天)
显示 更早的评论
Hi everyone,
I have a temperature field calculated through markers advection and I would like to plot the 600 °C contour.
I am using the fastscatter function to obtain the temperature field(Fastscatter(xm,ym,Tm)), where xm and ym represent markers coordinate and Tm the markers temeprature and are calculated accordingly to particular functions. I just need the contour to visualize its evolution over time, I don't need it for further calculations.
Thanks!
3 个评论
Walter Roberson
2019-7-31
fastscatter is not part of MATLAB so it is necessary to identify the source of it so that people know what it does.
采纳的回答
Walter Roberson
2019-7-31
编辑:Walter Roberson
2019-8-1
更多回答(1 个)
checkMAT
2019-8-1
1 个评论
Walter Roberson
2019-8-1
contour() itself returns https://www.mathworks.com/help/matlab/ref/matlab.graphics.chart.primitive.contour-properties.html Contour objects. clabel() expects those objects, but tricontour() returns patch objects.
Patch properties include EdgeColor and LineWidth
To label the contours that are patch objects, you will have to text() somewhere appropriate. True contour objects are able to internally break the line and put in the text somewhere "nice", but you will not be able to do that at all easily for patch objects.
另请参阅
类别
在 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!