Problem 46022. Let's create histogram data by yourself.

We'd like to create histogram data, which first column shows the data, and second column shows the frequency.
input = [1, 2, 1, 1, 2, 3, 4, 1];
output = [1, 4; 2, 2; 3, 1; 4, 1];
Actually, useful matlab function exists to solve. Please try to solve it with and without the useful matlab function.

Solution Stats

67.74% Correct | 32.26% Incorrect
Last Solution submitted on Apr 14, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers19

Suggested Problems

Problem Tags

Community Treasure Hunt

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

Start Hunting!