Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 8e1cdc85 authored by DIB Elian's avatar DIB Elian
Browse files

Added function to clamp data to a certain range

parent e8f5ba17
No related branches found
No related tags found
No related merge requests found
clamp.m 0 → 100644
function RefSet = clamp(RefSet,varargin)
%CLAMP Summary of this function goes here
% Detailed explanation goes here
numLab = numel(RefSet);
for lab = 1:numLab
RefSet(lab).Color = utils.clamp(RefSet(lab).Color,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