How can I plot 2D temperature.
    9 views (last 30 days)
  
       Show older comments
    
    yogan sganzerla
 on 4 Aug 2017
  
    
    
    
    
    Commented: Star Strider
      
      
 on 5 Aug 2017
            Hey, I have a matrix of the temperature from the geometry that is an circle.

I would like to know how can I plot it?
I am adding one image that looks like the result that I expect.


0 Comments
Accepted Answer
  Star Strider
      
      
 on 4 Aug 2017
        Without your data or calculations, providing specific code is not possible.
You may have to calculate your data in polar coordinates, then transform them to Cartesian coordinates to plot them with the contourf function.
See if something like this does what you want:
a = linspace(0, 2*pi, 500);
r = sin(a).^2;
[A,R] = meshgrid(a,r);
Z = R .* sqrt(A);
[X,Y,Z] = pol2cart(A,R,Z);
figure(1)
contourf(X, Y, Z)
grid on
axis equal
2 Comments
  Star Strider
      
      
 on 5 Aug 2017
				If the angle goes from 0 to 2*pi in 52 steps, you can define the angle as:
a = linspace(0, 2*pi, 52);
After that, the radius and temperature are defined. You may not be able to use the contour or contourf functions with scalar data, because those functions require that the ‘z’ value be a matrix, and yours are a vector.
I am not certain what to suggest.
More Answers (0)
See Also
Categories
				Find more on Polar Plots in Help Center and File Exchange
			
	Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


