Matlab: How can I specify the RGB color and line style for each curve in a waterfall plot?

9 vues (au cours des 30 derniers jours)
I want to plot my data in a waterfall style in a way that each curve has a specific line style and color without having under the curves filled with a color. I am using the below code as an example. I appreciate any help!
figure
xaxis = linspace(-pi/2,3/2*pi, 200);
variation = [ 0.5 1 5 10 7 3.5 8 0.6 4 7];
spectralSeries = abs(sin(xaxis)'*ones(1,10) + sin(xaxis'*variation)*0.25);
h = waterfall(spectralSeries');
cameratoolbar;
%%
set(h, 'FaceColor', 'flat');
set(h, 'FaceAlpha', 1);
set(h, 'EdgeColor', 'k');
set(h, 'FaceVertexCData', rand(10,3));

Réponses (1)

Star Strider
Star Strider le 10 Mar 2023
It is likely easier to do this using plot3
figure
xaxis = linspace(-pi/2,3/2*pi, 200);
variation = [ 0.5 1 5 10 7 3.5 8 0.6 4 7];
spectralSeries = abs(sin(xaxis)'*ones(1,10) + sin(xaxis'*variation)*0.25);
[X,Y] = ndgrid(xaxis,(1:numel(variation)));
figure
plot3(X, Y, spectralSeries)
yticks(1:numel(variation))
grid
xlabel('X')
ylabel('Y')
Ax = gca;
Ax.ColorOrder = jet(numel(variation));
Set the ColorOrder property to define the line colours.
.

Catégories

En savoir plus sur Line Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by