Plot in 3D over Time

19 visualizaciones (últimos 30 días)
Nicolas harfaut
Nicolas harfaut el 14 de Sept. de 2016
Comentada: Star Strider el 10 de Oct. de 2016
Hi,
I need to make a 3D plot that change over time. I have 4 points which doesn't move in x and y, but z is moving through time. For exemple A(1,1,zA) B(1,2,zB) C(2,1,zC) and D(2,2,zD) and I have lots of values for zA, zB, zC, zD over time.
Who can I plot this in Matlab ?
Thank you for your answers.
Nicolas Harfaut

Respuestas (3)

Star Strider
Star Strider el 14 de Sept. de 2016
You can probably adapt this code to do what you want:
[X,Y] = meshgrid(linspace(-5, 5, 50));
fcn = @(x,y,k) k*x.^2 + y.^2;
v = [1:-0.05:-1; -1:0.05:1];
for k1 = 1:2
for k2 = v(k1,:)
surfc(X, Y, fcn(X,Y,k2))
axis([-5 5 -5 5 -30 50])
drawnow
pause(0.1)
end
end
  8 comentarios
Nicolas harfaut
Nicolas harfaut el 10 de Oct. de 2016
Thank you so much
Nicolas
Star Strider
Star Strider el 10 de Oct. de 2016
My pleasure.
If my Answer solved your problem, please Accept it.

Iniciar sesión para comentar.


KSSV
KSSV el 14 de Sept. de 2016
clc; clear all ;
x = rand(4,1) ;
y = rand(4,1) ;
for i = 1:100
z = rand(4,1) ;
plot3(x,y,z) ;
drawnow
pause(0.2)
end

Nicolas harfaut
Nicolas harfaut el 15 de Sept. de 2016
Thank you for your answers, I wil look into it.
Nicolas Harfaut

Categorías

Más información sobre Graphics Performance en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by