Replace empty string with NaN in a cell
87 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Daneisha Blair
le 23 Août 2021
Commenté : Daneisha Blair
le 23 Août 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 commentaires
Réponse acceptée
Plus de réponses (1)
Awais Saeed
le 23 Août 2021
Modifié(e) : Awais Saeed
le 23 Août 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}
Voir également
Catégories
En savoir plus sur NaNs dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!