Azzera filtri
Azzera filtri

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

12 visualizzazioni (ultimi 30 giorni)
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 Commenti
KALYAN ACHARJYA
KALYAN ACHARJYA il 5 Mag 2020
Modificato: KALYAN ACHARJYA il 5 Mag 2020
One Way:
  • Get the array
  • Read the first element
  • Count the repetitions of the first element
  • pdf_first=repetitions/length(array)

Accedi per commentare.

Risposte (1)

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

Categorie

Scopri di più su Multidimensional Arrays in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by