How to insert NaN at the end of matrix (.mat)
2 views (last 30 days)
Show older comments
Eliane Truccolo
on 2 Feb 2017
Commented: John Chilleri
on 2 Feb 2017
I have a matrix (.mat) with two columns and I want to insert a line of NaN at the end of matrix...
0 Comments
Accepted Answer
John Chilleri
on 2 Feb 2017
Edited: John Chilleri
on 2 Feb 2017
Hello,
Would it be sufficient to:
load('your_file.mat')
Matrix_Name = [Matrix_Name; NaN NaN];
% Get rid of extra workspace variables so they're not also saved:
clearvars -except Matrix_Name
save('your_file.mat')
Hope this helps!
4 Comments
More Answers (0)
See Also
Categories
Find more on Logical 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!