How to set an upper and lower limit on a data set from a matrix
Mostra commenti meno recenti
I need to set an upper and lower limit on the numbers in a data set that belongs to a matrix.
How would I go about doing this?
2 Commenti
James Tursa
il 3 Ago 2015
Please provide a short example showing inputs and desired output.
jgillis16
il 3 Ago 2015
Risposta accettata
Più risposte (1)
James Tursa
il 4 Ago 2015
Assuming you want to extract all the rows where the 3rd column meets your conditions:
GalList = your matrix
lower_limit = 176.71;
upper_limit = 198.71;
x = (GalList(:,3) >= lower_limit) & (GalList(:,3) <= upper_limit);
extracted_rows = GalList(x,:);
3 Commenti
jgillis16
il 4 Ago 2015
James Tursa
il 4 Ago 2015
Do you mean read in only those lines, or create a new file with only those lines, or what? How are you currently reading this file?
jgillis16
il 4 Ago 2015
Categorie
Scopri di più su Bessel functions 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!