?? avw_smooth.m
字號:
function avw = avw_smooth(avw,fwhm)
% avw_smooth - Guassian smoothing
%
% Usage: avw = avw_smooth(avw,fwhm)
%
% avw is the Analyze struct returned by avw_read
% fwhm is an integer indicating the voxels to convolve with the Gaussian kernel
% (default = 3, a 3x3x3 convolution)
%
if ~exist('fwhm','var'), fwhm = 3; end
if isempty(fwhm), fwhm = 3; end
fprintf('...gaussian smoothing...'); tic;
avw.img = smooth3(avw.img,'gaussian',fwhm);
t = toc; fprintf('done (%5.2f sec)\n',t);
return
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -