Mentions légales du service

Skip to content
Snippets Groups Projects
Commit a618af14 authored by Elian Dib's avatar Elian Dib
Browse files

Addded function to apply function image-wise

parent 15db13e8
No related branches found
No related tags found
No related merge requests found
function data = applyToSlices(data,fun,varargin)
%APPLYTOSLICES Summary of this function goes here
% Detailed explanation goes here
[~,~,~,n] = size(data);
for it = 1:n
data(:,:,:,it) = fun(data(:,:,:,it),varargin{:});
end
end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment