Effacer les filtres
Effacer les filtres

How to find positive values in 1500 matrices(720*1280)?

11 vues (au cours des 30 derniers jours)
Wenyi Xiao
Wenyi Xiao le 26 Avr 2019
Réponse apportée : Matt J le 26 Avr 2019
WeChat Screenshot_20190426114417.png
I've got a data like this. Each file contains zero and some positive values or all zeros.
I want to find which matrix contains positive values.

Réponses (2)

Matt J
Matt J le 26 Avr 2019
If C is your cell array
find(cellfun(@nnz,C))

KSSV
KSSV le 26 Avr 2019
If A is your matrix.
idx = A>0 ; % this gives indices of posittive values
idx = sign(A) % this gives sign of values in A
A(A>0) % this gives values in A which are greater than 0
  1 commentaire
Wenyi Xiao
Wenyi Xiao le 26 Avr 2019
I want to keep n matrices that contains positive integers.
so there will be n*1 cell. Each contains 720*1280.
Do you know how?

Connectez-vous pour commenter.

Catégories

En savoir plus sur Structures 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