How do you use the NaN function?
显示 更早的评论
How would write a code that for a vector that is 500 data points long, but the first 123 data points are NaN?
回答(1 个)
Abdolkarim Mohammadi
2020-9-14
编辑:Abdolkarim Mohammadi
2020-9-14
You first create the NaN vector using nan(), then fill in the elements.
V = nan (500,1);
V (124:end) = Data;
4 个评论
Nicholas Deosaran
2020-9-14
Abdolkarim Mohammadi
2020-9-14
编辑:Abdolkarim Mohammadi
2020-9-14
The first line create the NaN vector and the second line fills it with your data. You may feel more comfortable with this syntax:
V (1:123) = NaN;
Nicholas Deosaran
2020-9-14
Abdolkarim Mohammadi
2020-9-14
No. If you have your vector of values for 125 to 500 and you want to transfer them to the new vector, then you should use:
V = nan (500,1);
V (124:end) = Data;
Otherwise, if you have a 500 element vector and you want to eliminate the first 125 elements, then you can do it in one command (not the one you mentinoed):
Data (1:123) = NaN;
类别
在 帮助中心 和 File Exchange 中查找有关 NaNs 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!