creating an empty cell in an array
13 views (last 30 days)
Show older comments
Ahmed Abdulla
on 21 Jun 2019
Commented: Akshay Malav
on 21 Jun 2019
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 Comments
Accepted Answer
Akshay Malav
on 21 Jun 2019
Edited: Akshay Malav
on 21 Jun 2019
Then use this code.
A = [1 NaN 2];
B = rmmissing(A) % will remove NaN from array A
The B array wil be [1 2]
2 Comments
More Answers (0)
See Also
Categories
Find more on Matrices and Arrays in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!