How to pick specific points and mark them on a plot?
1 次查看(过去 30 天)
显示 更早的评论
Hi, I currently have an array that is finding temperature differences between two sets of quality controlled data. I have no problem finding these temperature differences and plotting them, but I'd like to know if there is a way for me to mark where there is at least a one degree difference? so:
%temp is time series object with temperature differences
plot(temp)
for i=1:length(temp)
if temp(i)>1 temp(i)<-1
((mark this on the plot))
end
end
Thanks!
0 个评论
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Time Series Collections 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!