Effacer les filtres
Effacer les filtres

find probability of some data

2 vues (au cours des 30 derniers jours)
Imp
Imp le 7 Juin 2023
I have some data in simulink, I want to know what is the probability of these data to be less than some determined constant number?
is there any function or way in matlab to find it?

Réponses (1)

the cyclist
the cyclist le 7 Juin 2023
data = [2 3 5 7 11 13 17];
constant = 6;
probabilityDataLessThanConstant = mean(data<constant)
probabilityDataLessThanConstant = 0.4286

Catégories

En savoir plus sur Modeling dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by