take values from old matrix to newer

1 vue (au cours des 30 derniers jours)
tal shmuel
tal shmuel le 18 Jan 2020
Commenté : Star Strider le 18 Jan 2020
hello
i got from a code matrix A in size 28281X5.
at colums 3, 4 and 5 there are negetive varibles.
i want to creat a new matrix from A matrix that include all the lines from A matrix withuot the lines with the
negative varibles
thanks for the help !
Tal

Réponse acceptée

Star Strider
Star Strider le 18 Jan 2020
Create the output matrix ‘B’ as:
B = A(all(A(:,3:5) >= 0, 2),:) % Result
Example—
A = [randi(9, 15, 2) randi([-4 +5], 15, 3)] % Create ‘A’
B = A(all(A(:,3:5) >= 0, 2),:) % Result
  4 commentaires
tal shmuel
tal shmuel le 18 Jan 2020
thank you !!
Star Strider
Star Strider le 18 Jan 2020
My pleasure!
If my Answer helped you solve your problem, please Accept it!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Tags

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by