Surf plot line by line
Mostrar comentarios más antiguos
Hello there!
I want to make a 3D surface plot with, but I have the following problem.
Imagine that I have X and Y vectors and plot some function of them as Z using the colormap. The trick is that my Y-values might depend upon values of the X-vector, meaning that for a fixed xj = X(1, j) I might have different Yj vectors. So, the obvious solution is to plot it line-by-line fixing a particular X-value and plotting the Y dependency of the function. The problem is that surf does not support Z as vectors.
I kind of found the way to do that, but its not exactly what I wanted.
Here comes some code: Conventional 3D SurfPlot of some function:
yvec = linspace(0.0, 2*pi, 100);
xvec = linspace(0.0, 2*pi, 200);
[xm, ym] = meshgrid(xvec, yvec);
zmat = cos(xm).*sin(ym);
figure
surf(xvec, yvec, zmat, 'edgealpha', 0.0); hold on;
xlim([min(xvec), max(xvec)]);
colormap(jet(250));colorbar;
view(0,90);
and then I just make slices of the X vector, but not containing the last possible slice, which would be a single point, making Z not a matrix, but a vector and, therefore, throwing an error.
figure
for ind = length(xvec)-1:-1:1
yvec = linspace(0.0, 2*pi, 100);
yvec = yvec + 0.1*rand(1, 100);
[xm, ym] = meshgrid(xvec(ind:end), yvec);
zmat = cos(xm).*sin(ym);
surf(xvec(1, ind:end), yvec, zmat, 'edgealpha', 0.0); hold on;
xlim([min(xvec), max(xvec)]);
colormap(jet(250));brighten(0.2);colorbar;
view(0,90);
end
As an example I just added some random noise to the y-values, so that it varies for each xvec(1, ind) value.
Is there any other way to do it efficiently? Actually, this looping takes more time to plot and this method also obviously loses one line of data related to xvec(1, end).
Respuestas (1)
KSSV
el 22 de Ag. de 2017
0 votos
Doc waterfall
2 comentarios
TheStranger
el 23 de Ag. de 2017
Editada: TheStranger
el 23 de Ag. de 2017
KSSV
el 23 de Ag. de 2017
What you expect?
Categorías
Más información sobre Data Distribution Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

