Clear Filters
Clear Filters

How to convert a matrix like this?

4 views (last 30 days)
Hello everyone, I need a help with this problem. I would like to convert a matrix to another one, like the following examples: A=[1;2;3;0;5;7]----->A=[1;2;3;5;7] B=[0;1;3;4;5;6]---->B=[1;3;4;5;6] That means I have a new matrix without 0. Thank you very much!

Accepted Answer

madhan ravi
madhan ravi on 4 Sep 2018
Edited: madhan ravi on 4 Sep 2018
Try this:
A(A==0)=[]
  6 Comments
madhan ravi
madhan ravi on 4 Sep 2018
Thank you @Guillaume :)

Sign in to comment.

More Answers (0)

Categories

Find more on Sparse Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!