How to make values in a matrix from 0 to a certain number?

1 view (last 30 days)
I have a function [new] = lower(old, max) where old is a 3x3 matrix and new is a 3x3 matrix whose values do not go above max, which is just a number. new is derived from old, needless to say. My question is, how do I make it so the elements in the matrix do not go above max. I have to vectorize this function (so no selection or iteration).

Accepted Answer

Matt J
Matt J on 19 Oct 2014
You are simply re-inventing the min() command
new=min(old, threshold)

More Answers (0)

Categories

Find more on Signal Generation and Preprocessing 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!