How do you vary 2D plot color with time when X and Y data overlap?

19 views (last 30 days)
I'm collecting data from some extensometers that show soil displacements in response to barometric pressure fluctuations. When the displacement data is plotted against the barometric data (to get a coefficient), the plot appears like a series of "squiggles" (see photo). When I use the patch() function, the polygons are filled in with color. I only want the color of the line to vary with time. Does anyone know how to accomplish this? I've tried surf(), but was unable to plot.
x = BaroP_Avg; % Barometric Pressure Data [kPa]
y = X8; % Displacement Data [microns]
col = time;
figure();patch(x,y,col);
Thanks, Rob
  1 Comment
Star Strider
Star Strider on 19 Mar 2017
Guessing on this.
Consider plotting it in 3D with time on the ‘Z’ axis, and not using patch, at least at first. Then use the view function to rotate it to view it as 2D.
There may be other approaches.

Sign in to comment.

Answers (1)

Alain Kuchta
Alain Kuchta on 22 Mar 2017
I understand you would like to plot a 2D line of varying color. This MATLAB Answer suggests using surf to create the line:
Using the same technique, I was able to plot a line which "squiggles" back over itself and varies in color from start to finish. The one modification I made from the original post was to use "time" to vary color. The time is simply an array which increases from 1 to the number of samples.
x = [1 2 3 1 2 3];
y = [2 3 4 4 3 2];
z = zeros(size(x));
time = 1:length(x);
surface([x;x],[y;y],[z;z],[time;time],...
'facecol','no',...
'edgecol','interp',...
'linew',2);

Community Treasure Hunt

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

Start Hunting!