How to draw a histogram of my data?

조회 수: 2 (최근 30일)
Sadiq Akbar
Sadiq Akbar 2020년 10월 6일
댓글: Jon 2020년 10월 15일
I have two vectors a and b, where they are as follows:
b=1:100;
a=1e-18:1e-15;
I want to draw a histogram of them such that a is on x-axis and b is on y-axis as shown in the given attachement.
  댓글 수: 2
Sadiq Akbar
Sadiq Akbar 2020년 10월 6일
Thank you very much Jon for your prompt response. I checked that but that has a single vector x. I have two vectors a and b.So If I make my "a" vector as x, then where is the role of vector b? So that can't help me.

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

채택된 답변

Jon
Jon 2020년 10월 6일
I'm not really sure what you are trying to make a histogram of. It looks like you just want to know how many equally spaced values there are between logarithmically spaced intervals. In this case you don't need the b vector, other than to look at its maximum value which would just set the maximum horizontal scale value. To make sure you don't exceed this value you have to choose your increment properly. Maybe you are looking for something like this?
numBins = 20;
maxCount = 100;
% calculate increment so that maxCount will not be exceeded
delta = (1e-15 - 1e-18)/(numBins*maxCount);
% generate your equally space data
a=1e-18:delta:1e-15;
% make your histogram
histogram(a,numBins)
set(gca,'xscale','log') %scale the x-axis logarithmically
  댓글 수: 7
Jon
Jon 2020년 10월 12일
If it will not run in the older version, then I assume that this feature was added in a more recent version. I don't have an older version to test in. Unless there is something preventing you from doing so I would highly recommend staying up to date with the current version to avoid such problems.
Jon
Jon 2020년 10월 15일
If I have answered your question please accept this answer so that others who might have a similar question will know that an answer is availble.

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by