Combining several sets of data in an array into one numeric array to make a histogram

조회 수: 3 (최근 30일)
I got 1826 set of data inside variable named X, each set of data inside has several numbers as data. I once use the variable to try making a histogram, but command window says only numeric array can achieve that. How can I transform all data into 1 numeric array and get the histogram. Thanks.

채택된 답변

Dyuman Joshi
Dyuman Joshi 2023년 12월 29일
Use vertcat to get the data into a column vector and then use histogram -
%Sample data
X = {rand(22,1); (1:22).'; primes(75).'}
X = 3×1 cell array
{22×1 double} {22×1 double} {21×1 double}
Y = vertcat(X{:})
Y = 65×1
0.1986 0.8357 0.4858 0.7844 0.3912 0.9759 0.7271 0.3676 0.2251 0.4418
%Direct call to histogram(), specify the bins as required
histogram(Y)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Distribution Plots에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by