what kind function of this? Fit Constant Probability?

1 回表示 (過去 30 日間)
uncung fgv
uncung fgv 2012 年 10 月 29 日
Pfitconst=constProb(p);% Fit function with constant probability
i am searching on Google but harldy find, what constProb or fitconst mean is.
I have a value or function P and p.

採用された回答

José-Luis
José-Luis 2012 年 10 月 29 日
編集済み: José-Luis 2012 年 10 月 29 日
constProb is not a built-in function. You can look at the source code yourself
edit constProb
Or you can post it here. Note that just posting some code and asking "What does this do?" is not likely to yield many answers. Asking specific questions might elicit more responses.
  2 件のコメント
uncung fgv
uncung fgv 2012 年 10 月 29 日
ok i will look it.
uncung fgv
uncung fgv 2012 年 10 月 29 日
編集済み: uncung fgv 2012 年 10 月 29 日
this is the whole function:
P=ones(size(n));% Cumulative Probability
p=ones(size(n));% Breakage probability during the stressing with number k;
L=length(n);
r=(1:L)
for m=1:L;
p(m)=n(m)/N;
end;
% p(1)=0.1;
P(1)=p(1);
for m=2:L;
P(m)=P(m-1)+p(m);
end;
Pfitconst=constProb(p);% Fit function with constant probability
figure(1)
plot(r,Pfitconst,'--black',r,P,'*');

サインインしてコメントする。

その他の回答 (1 件)

Sachin Ganjare
Sachin Ganjare 2012 年 10 月 29 日
enum ConstProb {Zero, One, Valid, Invalid};
  1 件のコメント
uncung fgv
uncung fgv 2012 年 10 月 29 日
i will learn this. thx

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeStatistics and Machine Learning Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by