Line Plot and NaN Values

14 次查看(过去 30 天)
Nathan
Nathan 2012-3-9
编辑: FSh 2021-4-14
Hi,
I have several matrices that I am trying to graph on the same plot, except that some of the matrices contain lots of NaN values, so when I plot these matrices they appear as dots (or as a marker if I set it). Is there a way to force matlab to drawn lines between the existing points, without having to recreate the matrices such that no NaN values exist?
Thank you
  1 个评论
FSh
FSh 2021-4-14
编辑:FSh 2021-4-14
You can use fillmissing function but then start your line from the first not NAN value.
create_new_var= fillmissing(your_array_with_nan,'linear');% to interpolate for the NAN and create a line
fid_first_notNAN = find(~isnan(backscatter_db_corrected40), 1);
plot(x, create_new_var(id_first_notNAN:end));

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2012-3-9
No there is not. nan and infinities always mean a break in drawing the line.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by