Effacer les filtres
Effacer les filtres

How to find values from data

8 vues (au cours des 30 derniers jours)
Zach Hanses
Zach Hanses le 12 Déc 2021
Commenté : Zach Hanses le 12 Déc 2021
When using if statements, I am trying to find a set of data that fits the condition I have given. How can I find where the data with the right conditions is located?

Réponses (1)

KSSV
KSSV le 12 Déc 2021
You can use logical indexing.
Example:
A = rand(10,1) ; % data for demo
idx = A > 0.3 & A < 0.8 ;
idx
idx = 10×1 logical array
0 1 0 1 0 0 0 0 0 0
find(idx)
ans = 2×1
2 4
A(idx)
ans = 2×1
0.7124 0.7594
  5 commentaires
Star Strider
Star Strider le 12 Déc 2021
What are the row and column sizes are the two data sets? Do they have common times (or any other specific identifying row information)?
Zach Hanses
Zach Hanses le 12 Déc 2021
they are both 244x1. Each row is supposed to indicate days

Connectez-vous pour commenter.

Catégories

En savoir plus sur Problem-Based Optimization Setup dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by