How do you maintain value order when removing zeros from a matrix?

2 ビュー (過去 30 日間)
Chameleon17
Chameleon17 2015 年 6 月 2 日
コメント済み: Chameleon17 2015 年 6 月 2 日
Hi,
I am trying to remove zeros from my matrix, so I have one column of dates, but they need to be maintained in the right order.
First_SP = SP_Marker_C(cellfun(@(x) ~isequal(x, 0), SP_Marker_C));
This removes my zeros, it reorders all the dates though, is it possible to remove the zeros but keep them in the original order?
Thanks for any help/advice/direction!

回答 (1 件)

Andrei Bobrov
Andrei Bobrov 2015 年 6 月 2 日
編集済み: Andrei Bobrov 2015 年 6 月 2 日
SP_Marker_C(~cellfun('ischar',SP_Marker_C)) = {[]};
or
SP_Marker_C(cellfun(@(x)x == 0,SP_Marker_C)) = {[]};
  1 件のコメント
Chameleon17
Chameleon17 2015 年 6 月 2 日
It instructs me to set my uniform output to false for this to work as it's not scalar in uniform output. If you do that, does that hamper future actions where you want a uniform output?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeShifting and Sorting Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by