⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rand_uniform_inside_hypersphere.m

📁 一个用EM算法的源程序
💻 M
字号:
function X = rand_uniform_inside_hypersphere(ambientDimension, sampleCount)% Generate sampleCount points sampled uniformly from within a unit hypersphere% lying in an ambient space of dimension ambientDimension.% Columns of X are data points.% There are ways of doing this that don't require the computation of so% many random numbers.  There is an article from the seventies on how% to do this written in an era where this sort of thing took hours on% contemporary hardware.X = rand(ambientDimension, sampleCount)-0.5*ones(ambientDimension,sampleCount);norms = sqrt(sum(X.*X,1));radii = rand(1, sampleCount).^(1/ambientDimension);X = X * diag(sparse(radii./norms));

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -