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

📄 testfastslantstack.m

📁 beamlet变化的工具箱
💻 M
字号:
% TestFastSlantStack
%Makes a figure showing Slant stack of  points in image space
	figure;
	X = zeros(32);
	X(6,9) = 1;
	S = FastSlantStack(X);

	subplot(3,2,1)
	imagesc(X)
	axis('image');set (gca,'XTick',[]);
    set (gca,'YTick',[]);title('X')
	colormap(gray)
	subplot(3,2,2)
	imagesc(real(S))
	axis('image');set (gca,'XTick',[]);
    set (gca,'YTick',[]);title('S(X)')
	%
	norm(imag(S))
	%
	X = 0 .* X;
	X(19,23) =1;
	S = FastSlantStack(X);
	subplot(3,2,3)
	imagesc(X);title('X')
	axis('image');set (gca,'XTick',[]);
    set (gca,'YTick',[]);
	colormap(gray)
	subplot(3,2,4)
	imagesc(real(S));title('S(X)')
	axis('image');set (gca,'XTick',[]);
    set (gca,'YTick',[]);
	%
	norm(imag(S))
	%
	X = 0 .* X;
	X(12,28) =1;
	S = FastSlantStack(X);
	subplot(3,2,5)
	imagesc(X);title('X')
	axis('image');set (gca,'XTick',[]);
    set (gca,'YTick',[]);
	colormap(gray)
	subplot(3,2,6)
	imagesc(real(S));title('S(X)')
	axis('image');set (gca,'XTick',[]);
    set (gca,'YTick',[]);
	%
%
%	Copyright (c) 2001 David L. Donoho
%
	
	
%% Part of BeamLab Version:1.1% Built:Thursday,14-Feb-2002 00:00:00% This is Copyrighted Material% For Copying permissions see COPYING.m% Comments? e-mail beamlab@stat.stanford.edu%%% Part of BeamLab Version:200% Built:Friday,23-Aug-2002 00:00:00% This is Copyrighted Material% For Copying permissions see COPYING.m% Comments? e-mail beamlab@stat.stanford.edu%%% Part of BeamLab Version:200% Built:Saturday,14-Sep-2002 00:00:00% This is Copyrighted Material% For Copying permissions see COPYING.m% Comments? e-mail beamlab@stat.stanford.edu%

⌨️ 快捷键说明

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