How can I find the probability of each term in the array?

18 views (last 30 days)
Let's say we have an arrary such [1,1,2,3,5,5], how can I find the probability of the terms? I am quite new in Matlab and I could not solve the problem.
Thanks!
  2 Comments
KALYAN ACHARJYA
KALYAN ACHARJYA on 5 May 2020
Edited: KALYAN ACHARJYA on 5 May 2020
One Way:
  • Get the array
  • Read the first element
  • Count the repetitions of the first element
  • pdf_first=repetitions/length(array)

Sign in to comment.

Answers (1)

KSSV
KSSV on 5 May 2020
A = [1,1,2,3,5,5] ;
P = nnz(A==1)/length(A) % probability of 1

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!