creating an empty cell in an array
Afficher commentaires plus anciens
i have an array most made up of numbers and some are NaN i would like to make the NaN cells empty because i have a plotting function that doesnt accept NaN and when i assign it to 0 it affects the resulting graph, so im not really sure of how to make it blank with no numerical value
4 commentaires
Akshay Malav
le 21 Juin 2019
Can you tell me what version of matlab you are using
Ahmed Abdulla
le 21 Juin 2019
madhan ravi
le 21 Juin 2019
Can’t you just ignore NaN values using isnan() ?
madhan ravi
le 21 Juin 2019
a = [1,2,NaN,5,NaN]
b = [3,4,5,1,NaN]
result = ???
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!