필터 지우기
필터 지우기

Create space between binEdges Historgram

조회 수: 4 (최근 30일)
Mohamed
Mohamed 2023년 2월 19일
댓글: Mohamed 2023년 2월 19일
Hello,
I'am tryning to creat space between binedges in the histogram below
I wanted to choose the interval and the step of the x-axis knowing that I wanted to present the cumulative values for each value of X
I want to get a histogram like the one below to see esaslyh my data and x values
thanks for your help

답변 (1개)

KALYAN ACHARJYA
KALYAN ACHARJYA 2023년 2월 19일
Try
data=randi([1,10],[100,100]);
hist_counts = histcounts(data);
%............^ change the value as per required result
bar(hist_counts, 0.5);
  댓글 수: 1
Mohamed
Mohamed 2023년 2월 19일
Thank you for answer, it's helpfuel,
If I wanna for example present your histogram with a step of 3
so we will have for 3>>> 3000
6>>>>>2900
9>>>> 2800
and so on, (we cumlate the 1 , 2 and results, to present them directly with on the step 3)
Could you please if it's possible to show me how to do it
thanks you

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Histograms에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by