How to determine a value within a range?
Mostra commenti meno recenti
Hi,
I have a .txt file with a variety of diameters, and I am trying to find out how many diameters lie between the values 100 and 500 m. How can I do this?
Risposte (1)
Azzi Abdelmalek
il 6 Giu 2016
A=randi(1000,1,100)
out=sum(A>=100 & A<=500)
Categorie
Scopri di più su Octave in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!