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

📄 unvecreal.m

📁 Analytical constant-modulus algorithm, to separate linear combinations of CM sourcesThe algorithm i
💻 M
字号:
function V = unvecreal(v)% function V = unvecreal(v)%% form matrix V from col vector v, where V has n columns.% This version: make use of symmetry (inverse of vecreal() )[m,N] = size(v);n = sqrt(m);m = m/n;Y = zeros(m,n);for i=1:m,   Y(i,:) = v((i-1)*m+1:i*m)';endY1 = triu(Y,1);Y2 = tril(Y,-1);Yd = diag(Y)/sqrt(2);Y1 = Y1 + diag(Yd);V = (Y1 + Y1')/sqrt(2) + sqrt(-1)*(Y2' - Y2)/sqrt(2);

⌨️ 快捷键说明

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