how can remove the rows and columns which has ones in all

if the input array A i want B is the output
A=[1 1 1 1; 1 0 1 1;1 0 0 1]
A =
1 1 1 1
1 0 1 1
1 0 0 1
B =
0 1
0 0
thanks

 Accepted Answer

use all() for columns and rows separately , make a copy of A to B and finally remove the unwanted

3 Comments

I tried but could not find the result
If you have the code, I hope you send it
B = A;
r = all(A,2);
c = all(A,1);
B(r,:) = [];
B(:,c) = []

Sign in to comment.

More Answers (1)

A=[1 1 1 1; 1 0 1 1;1 0 0 1];
AA = ~A;
B = A(any(AA,2),any(AA));

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Asked:

on 7 Jul 2019

Commented:

on 8 Jul 2019

Community Treasure Hunt

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

Start Hunting!