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

📄 toon0561.m

📁 老外写的小波变换的工具箱
💻 M
字号:
% toon0561 -- Fast Algorithm for Matrix Multiplication
%
%  Illustrate Compression of Matrix Multiplication
%  using matrix with logarithmic singularity on diagonal.
%
%  The Matrix has the form
%        sin(2*pi .*X) .* sin(2*pi .*Y) .* log(abs(X-Y));
%
%  This is not circulant or Toeplitz, so Fourier Methods
%  cannot be applied.
%
%  First depict the matrix.
%
	xm = linspace(0,1,128);
	ym = xm + xm(2)/2;
%	[X,Y] = meshdom(xm,ym);  % DLD 09/29/99
	[X,Y] = meshgrid(xm,ym);
	Y = flipud(Y);
	mat = sin(2*pi .*X) .* sin(2*pi .*Y) .* log(abs(X-Y));
%
	zmat = (mat + 6) .* 40;
	GrayImage(zmat);
	brighten(-.5)
	brighten(-.5)
	title('Sin(2*pi*x) Sin(2*pi*y) Log(Abs(X-y))')
    
    

  %%  Part of Wavelab Version 850%  Built Tue Jan  3 13:20:43 EST 2006%  This is Copyrighted Material%  For Copying permissions see COPYING.m%  Comments? e-mail wavelab@stat.stanford.edu 

⌨️ 快捷键说明

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