How to pick specific points and mark them on a plot?
Afficher commentaires plus anciens
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!
Réponses (1)
Vivek Selvam
le 15 Oct 2013
Hi Marian
Add this snippet:
hold on;
plot(i,temp(i),'*')
1 commentaire
Marian
le 16 Oct 2013
Catégories
En savoir plus sur 2-D and 3-D Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!