image thumbnail
from MATLAB Plot Gallery - Rose Plot by Plot Gallery
Create a rose plot

Rose_Plot

This is an example of how to create a rose plot in MATLAB®.

Read about the rose function in the MATLAB® documentation.

Go to MATLAB Plot Gallery

% Load sunspot data
load sunspotData sunspot;

% Create a rose plot with 24 sectors
figure;
rose(sunspot, 24);

% Add title
title('Sunspot Frequency');

Contact us