help with a heat map
    조회 수: 46 (최근 30일)
  
       이전 댓글 표시
    
Hello, I have been trying to create a heat map with the following characteristics: variation of the magnitude of the increase in vertical effort in a mesh every 1 cm for point, linear, and distributed rectangular loads. I am a civil engineer and hope you can help me.heat map
댓글 수: 1
  Mathieu NOE
      
 2025년 10월 27일 8:40
				hello 
can you share your data / code - or a sketch / image / publication of what you want to achieve ? 
답변 (3개)
  Cris LaPierre
    
      
 2025년 10월 27일 13:18
        I assume you've looked here: https://www.mathworks.com/help/matlab/ref/heatmap.html
You either need a matrix of data corresponding to every point in your grid, or vectors corresponding to the x and y locations, along with their magnitude. This should include a value for every location.
x = [1 2 3 4];
y = [1 2 3];
% len(y) = # rows in Z
% len(x) = # columns in Z
Z = rand(length(y),length(x));
heatmap(x,y,Z)
댓글 수: 0
  Sam Chak
      
      
 2025년 10월 27일 16:23
        Hi @Camila
Perhaps this heatmap will help you to understand the data visually. In the strictest definition, a heatmap is a tabular representation in grid form where numerical values are visualized using colors instead of numbers. If your table or grid contains NaN values to represent missing data, the colors of the affected cells will be darkened.
x       = [1 2 3 4];
y       = [1 2 3];
[X, Y]  = meshgrid(x, y);
z       = X.*Y;
figure(1)
h1      = heatmap(x, y, z);
figure(2)
h2      = heatmap(x, y, z);
h2.CellLabelColor = 'none';  % Turn off numerical display
댓글 수: 0
  Mathieu NOE
      
 2025년 10월 28일 8:32
        hello 
there are a couple of interesting Fex submission : 
and probably many others ...
댓글 수: 0
참고 항목
카테고리
				Help Center 및 File Exchange에서 Data Distribution Plots에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!






