Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MATLAB に、n が 1 から 1000 の正規順序統計の期待値を生成するために使用できる組み込み関数はありますか?
または、そのためのサードパーティアルゴリズムがあるかどうかを知っている人はいますか?
どんな提案も役に立ちます!
この質問は適切に提起されているとは思いません。
しかし、linspace(a,b,step) を使用してベクトルを作成した場合
vector = linspace(1,1000,n);
次に、を使用して期待値を取得できます
expectation = sum(vector)/n;
ただし、各ポイントの確率は不明であるため、これは単なる平均です。