Effacer les filtres
Effacer les filtres

Surf on a cylinder

7 vues (au cours des 30 derniers jours)
Marcus
Marcus le 8 Juin 2024
Réponse apportée : Matt J le 8 Juin 2024
How can I plot this surf
on a cylindrical surface, like this?

Réponse acceptée

Matt J
Matt J le 8 Juin 2024
% 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;

Plus de réponses (0)

Catégories

En savoir plus sur Data Distribution Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by