take values from old matrix to newer

1 view (last 30 days)
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

Accepted Answer

Star Strider
Star Strider on 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 Comments
Star Strider
Star Strider on 18 Jan 2020
My pleasure!
If my Answer helped you solve your problem, please Accept it!

Sign in to comment.

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Tags

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!