Azzera filtri
Azzera filtri

How to convert a matrix like this?

4 visualizzazioni (ultimi 30 giorni)
Phung Minh
Phung Minh il 4 Set 2018
Commentato: Phung Minh il 4 Set 2018
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!

Risposta accettata

madhan ravi
madhan ravi il 4 Set 2018
Modificato: madhan ravi il 4 Set 2018
Try this:
A(A==0)=[]
  6 Commenti
madhan ravi
madhan ravi il 4 Set 2018
Thank you @Guillaume :)
Phung Minh
Phung Minh il 4 Set 2018
Thank you ?

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Sparse Matrices in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by