Plotting index-determined points in a continuous line plot in a different color
1 回表示 (過去 30 日間)
古いコメントを表示
I am investigating spike detection in audio data. I have 3 vectors of data: t, xp and yp, which I produce a 3D diagram from using plot3. Earlier on in my script, I determine a vector, say 'color2', containing the indexes of points that I would like to plot as blue, with the rest of the data as black. It is easy to produce a 3D plot of un-connected points with the following code:
plot3(fig4,t(color1),xp(color1),yp(insideIndex),'k.'); % Plot points as black dots
plot3(fig4,t(color2),xp(color2),yp(color2),'bo'); % Plot points of interest as blue pluses
This produces the following plot:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/166396/image.png)
However, ideally I would like a single, continuous line of data where blue points are joined by blue lines and black points are joined by black lines, similar to the image below:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/166397/image.png)
What's the simplest way of doing this? Cheers.
0 件のコメント
回答 (1 件)
Saurabh Gupta
2017 年 7 月 31 日
Generally speaking, line plot functions combine adjoining points, based on the input vectors, into line segments. All you need to do it separate the data for both cases, and arrange the points in each data set in order of succession (as per line plotting requirements). Then, the 'plot3' command should be able to produce the continuous line plots that you require.
I am guessing that you are aware that your current commands use LineSpec as 'k.' and 'bo' which plot points only and not the connecting lines. But I thought I should mention it also just in case.
Hope this helps!
4 件のコメント
José-Luis
2017 年 8 月 8 日
I'm afraid it's not going to happen automagically. You will need two lines if you want two different colors.
参考
カテゴリ
Help Center および File Exchange で Specifying Target for Graphics Output についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!