How can i compare two columns ?

Hello, I have a question like this :
I Have one column which containes about 300 numbers and its values are changing in every hour.
also i have some constant value which i must compare to this column.
For example :
A=[0 300 4500 300 500 700 1250 2500 4500 2500 .....] (300 numbers)
B=[3000] which is a constant number.
i must compare every member of A to B and write those numbers in another sheet, which is equal or above to 3000.
if you have some ideas how to write this mini code, please write and help me, because its very important FOR me :(
Thanks a lot !!!

Réponses (1)

Andrei Bobrov
Andrei Bobrov le 27 Juil 2019

0 votes

out = A(A => 3000);

Catégories

Produits

Question posée :

le 27 Juil 2019

Commenté :

le 28 Juil 2019

Community Treasure Hunt

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

Start Hunting!

Translated by