Comparision of a matrix to a value

1 vue (au cours des 30 derniers jours)
Tina
Tina le 31 Oct 2019
Commenté : Tina le 31 Oct 2019
I want to compare values of a matrix of 4 by 3 dimension
for example
a=[7 8 8 ;5 3 2 ;1 2 3;7 6 5]
to a 1by1 matrix
b=[ 5]
if the values are greater than 5 the codes give me a 1 and 0 if not in a matrix of same dimension as a.What should i do??

Réponse acceptée

KALYAN ACHARJYA
KALYAN ACHARJYA le 31 Oct 2019
Modifié(e) : KALYAN ACHARJYA le 31 Oct 2019
a=[7 8 8 ;5 3 2 ;1 2 3;7 6 5];
b=5;
result=a>b
  1 commentaire
Tina
Tina le 31 Oct 2019
THANK YOU.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange

Produits


Version

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by