Bound Values of an array

Check whether value of the array within specified range or not and change accordingly
7K Downloads
Updated Thu, 29 Aug 2013 16:19:05 +0000

View License

Check whether value of the array within specified range or not, if in range it stays there as it is and if not then substitute by boundary value (depending upon which it breaks, if higher boundary breaks then replaced by higher boundary value and vice-versa)

function [ A2comp ] = MinMaxCheck( minimum, maximum, A2comp )
A2comp is the array to check
minimum and maximum are arrays which holds the minimum and maximum value of each element of an array (A2comp) respectively
output returns the array where all values within the range
if element of A2comp is less than minimum boundary value then it's changed to minimum boundary value
if element of A2comp is greater than maximum boundary value then it's changed to maximum boundary value
all array must be same in length

Cite As

Pramit Biswas (2024). Bound Values of an array (https://www.mathworks.com/matlabcentral/fileexchange/43251-bound-values-of-an-array), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2013a
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Logical in Help Center and MATLAB Answers
Acknowledgements

Inspired: BoundNDArray(array,lb,ub)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Published Release Notes
1.0.0.0