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;
但这只是一个平均值,因为每个点的概率都是未知的