i HAVE 8*15 matrix and I want 8*8 matrix in final. I want to remove the parity bits.What is the command to do that?

 Accepted Answer

A=rand(8,15);
A(:,2:2:end)=[];

2 Comments

I already have my 8*15 matrix with binary values.I dont need random integer. What can I do in that case.Thank you
I got it. Thank you so much. it works.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!