Filter löschen
Filter löschen

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

12 Ansichten (letzte 30 Tage)
Onur Metin Mertaslan
Onur Metin Mertaslan am 5 Mai 2020
Kommentiert: KSSV am 5 Mai 2020
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 Kommentare
KALYAN ACHARJYA
KALYAN ACHARJYA am 5 Mai 2020
Bearbeitet: KALYAN ACHARJYA am 5 Mai 2020
One Way:
  • Get the array
  • Read the first element
  • Count the repetitions of the first element
  • pdf_first=repetitions/length(array)

Melden Sie sich an, um zu kommentieren.

Antworten (1)

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

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by