필터 지우기
필터 지우기

How to pick specific points and mark them on a plot?

조회 수: 2 (최근 30일)
Marian
Marian 2013년 10월 15일
댓글: Marian 2013년 10월 16일
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!

답변 (1개)

Vivek Selvam
Vivek Selvam 2013년 10월 15일
Hi Marian
Add this snippet:
hold on;
plot(i,temp(i),'*')
  댓글 수: 1
Marian
Marian 2013년 10월 16일
It appears to be plotting the timeseries and then plotting the '*' further down the axis, instead of on top of the time series. Is there any way I can "get" the elements of the timeseries itself? In other words, instead of using temp, could I use my time series object for temp, ts5, in this for loop? It tells me I cannot just use ts5(i), as it is an undefined function for time series.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Visual Exploration에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by