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

📄 sint.m

📁 五点差分型多重网格方法:各种插值算子的比较)
💻 M
字号:
%SINT   Sine transform.
%       SINT(X) returns the sine transform of vector X.  The length of X
%       must be one less than a power of two.
%       If X is a matrix, the SINT operation is applied to each column.

% James Bordner and Faisal Saied
% Department of Computer Science
% University of Illinois at Urbana-Champaign
% 10 April 1995

function sx = sint(x)

[m, n] = size(x);

y            = zeros(2*(m+1),n);
y(2:m+1,1:n) = x;
z            = fft(y);
sx           = -imag(z(2:m+1,1:n));


⌨️ 快捷键说明

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