Filter löschen
Filter löschen

how to replace missing values from a double inside a cell array?

3 Ansichten (letzte 30 Tage)
I really thanks in advance anybody can tell me how can I replace THE missing values (100000) in the below cell array with NaN.
A = {[1,2,3,100000,4,5,100000],[6,100000,7,100000]};

Akzeptierte Antwort

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH am 5 Feb. 2020
newA=cellfun(@(x) x.*(x~=100000)./(x~=100000),A,'Uni',false)

Weitere Antworten (1)

BN
BN am 5 Feb. 2020
Bearbeitet: BN am 5 Feb. 2020
index=find(A==100000); %found 100000 in the A
A(index)=NaN; % Replace them by NaN
  2 Kommentare
JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH am 5 Feb. 2020
'==' does not work with argument of type cell
BN
BN am 5 Feb. 2020
Dear JESUS,
You are right, It's my bad. Thank you for letting me know

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by