Function for limit range
    66 views (last 30 days)
  
       Show older comments
    
Is there any function in matlab just like 'saturation' block in simulink? Which limit a input value within a range. If it exceeds the upper value it sets to the upper value and same for lower value.
0 Comments
Answers (2)
  dpb
      
      
 on 26 Mar 2014
        Not builtin but it's simple enough to create...
function y = bound(x,bl,bu)
  % return bounded value clipped between bl and bu
  y=min(max(x,bl),bu);
See Also
Categories
				Find more on Simulink Functions in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!