Replace empty string with NaN in a cell
90 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Daneisha Blair
il 23 Ago 2021
Commentato: Daneisha Blair
il 23 Ago 2021
I have a cell called A={ "20" "25" "25" [] "20" [] "25" "25" "25" "30"}
I would like to replace cell A with A={ "20" "25" "25" "NaN" "20" "NaN" "25" "25" "25" "30"}
Any help is highly appreciate, thank you.
0 Commenti
Risposta accettata
Più risposte (1)
Awais Saeed
il 23 Ago 2021
Modificato: Awais Saeed
il 23 Ago 2021
clc;clear;close all;
A={ "20" "25" "25" [] "20" [] "25" "25" "25" "30"}
% get locations of empty cell elements
idx = cellfun('isempty',A);
% replace those empty cells with NaN
A(idx) = {NaN}
Vedere anche
Categorie
Scopri di più su NaNs in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!