How can i compare two columns ?

2 views (last 30 days)
NinoOK
NinoOK on 27 Jul 2019
Commented: NinoOK on 28 Jul 2019
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 !!!

Answers (1)

Andrei Bobrov
Andrei Bobrov on 27 Jul 2019
out = A(A => 3000);

Categories

Find more on Data Import from MATLAB in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!