How to plot a contour in a fast scatter plot

2 Ansichten (letzte 30 Tage)
checkMAT
checkMAT am 31 Jul. 2019
Kommentiert: Walter Roberson am 1 Aug. 2019
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 Kommentare
checkMAT
checkMAT am 31 Jul. 2019
yes, that's the function. However my question is about plotting contours on top of that.
Walter Roberson
Walter Roberson am 31 Jul. 2019
fastscatter is not part of MATLAB so it is necessary to identify the source of it so that people know what it does.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 31 Jul. 2019
Bearbeitet: Walter Roberson am 1 Aug. 2019
  4 Kommentare
checkMAT
checkMAT am 31 Jul. 2019
thanks! it is kind of working. the contour is plotted but is hidden within the markers, because the markers density is pretty high (high resolution). Do you know if I can increase the thinckness of the contour? I tried to make it black, but is not visible.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

checkMAT
checkMAT am 1 Aug. 2019
I managed to plot the contours(I attached an image of the results), however the 'clabel(C,h)' function does not work' and I am not able to modify the colors and thickness of the contours. I can only put contours label using 'clabel(C,'Color','r')', but this is not what I need. Any suggestions?
This is the script I am using and the error I have:
tri=delaunay(xm,ym); % xm and ym represent my marker positions in the grid and Tm the teperature field generate as result of marker advection
[C,h]=tricontour(tri,xm,ym,Tm,14);
axis ij
clabel(C,h,'Color','k')
Error using clabel (line 77)
Not enough contour handles.
  1 Kommentar
Walter Roberson
Walter Roberson am 1 Aug. 2019
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.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Contour Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by