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

📄 fdct_usfft_r2c.m

📁 This directory includes matlab interface of the curvelet transform using usfft. Basic functions
💻 M
字号:
function C = fdct_usfft_r2c(C)% fdct_usfft_r2c - transform real curvelet coefficients to complex coefficients  nbs = length(C);  for s=2:nbs    nw = length(C{s});    for w=1:nw/2      A = C{s}{w};    B = C{s}{w+nw/2};      C{s}{w} = 1/sqrt(2) * (A+i*B);    C{s}{w+nw/2} = 1/sqrt(2) * (A-i*B);    end  end

⌨️ 快捷键说明

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