フィルターのクリア

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

12 ビュー (過去 30 日間)
Rob Moak
Rob Moak 2017 年 3 月 19 日
回答済み: Alain Kuchta 2017 年 3 月 22 日
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 件のコメント
Star Strider
Star Strider 2017 年 3 月 19 日
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.

サインインしてコメントする。

回答 (1 件)

Alain Kuchta
Alain Kuchta 2017 年 3 月 22 日
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);

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by