Effacer les filtres
Effacer les filtres

finding common rang between two different range?

9 vues (au cours des 30 derniers jours)
shirin mhd
shirin mhd le 24 Mar 2022
Commenté : shirin mhd le 24 Mar 2022

Hi everyone
I'm new to matlab and because of that my question may be so easy to others.I really appreciate your help.
I have x as my variable. and two range for it as below:
5<x<10
and
-6<x<6
and I want to find common range of them which should be 5<x<6. how can i do this in matlab?
im using version R2015b.

Réponse acceptée

Image Analyst
Image Analyst le 24 Mar 2022
Modifié(e) : Image Analyst le 24 Mar 2022
How about this:
range1 = [5, 10];
range2 = [-6, 6];
minValue = max([range1(1), range2(1)])
minValue = 5
maxValue = min([range1(2), range2(2)])
maxValue = 6
if maxValue >= minValue
% The ranges overlap
commonRange = [minValue, maxValue]
else
% The ranges don't overlap
commonRange = []
end
commonRange = 1×2
5 6
It will work in your antique version.
  1 commentaire
shirin mhd
shirin mhd le 24 Mar 2022
thanks alot. it is really helpful for me.

Connectez-vous pour commenter.

Plus de réponses (1)

KSSV
KSSV le 24 Mar 2022

Catégories

En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange

Produits


Version

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by