Effacer les filtres
Effacer les filtres

Shifting one of 3 dimensions in a plot

1 vue (au cours des 30 derniers jours)
Mason
Mason le 20 Déc 2011
Hey everyone,
Im at a loss and cant figure out how to do this. It seems very easy but im missing something. Basically grnfun is a 2048x10x16 matrix and i want to create 16 figures of 2048x10 plots. The 2048 rows is time and the 10 columns is amplitude. I want to shift the 10 by some constant "shift" so they don't plot over one another. Here is what i have:
shift = max(max(grnfun));
for k = 1:16
for m = 1:10
figure(k)
hold on
plot( grnfun(:,m,k) + shift*(m-1) )
end
end
I guess it doesnt know which dimension to add the shift to? Any help would be great, thanks!

Réponses (1)

Walter Roberson
Walter Roberson le 20 Déc 2011
Are you looking for something like a waterfall plot? http://www.mathworks.com/help/techdoc/ref/waterfall.html

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