Surf on a cylinder
조회 수: 4 (최근 30일)
이전 댓글 표시
채택된 답변
Matt J
2024년 6월 8일
% Step 1: Create the heatmap data
% Example heatmap data
heatmapData = peaks(50); % Replace this with your actual heatmap data
[nRows, nCols] = size(heatmapData);
% Step 2: Generate the cylinder coordinates
theta = linspace(0, 2*pi, nCols);
z = linspace(0, 1, nRows);
[Theta, Z] = meshgrid(theta, z);
X = cos(Theta);
Y = sin(Theta);
% Step 3: Map the heatmap data onto the cylindrical surface
figure;
surf(X, Y, Z, heatmapData, 'EdgeColor', 'none');
colormap(jet); % Adjust colormap as needed
colorbar;
title('Heatmap Mapped onto a Cylinder');
xlabel('X');
ylabel('Y');
zlabel('Z');
% Adjust the view for better visualization
view(3);
axis equal;
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


