MATLAB: Plotting Space-Time Function in MATLAB

MATLABspace-time plot

How can I plot a function (x,y,t) like the following:
(max(ceil(max(0.8535533905932737,(0.5*(sin((5)*atan2(y,x)+2*PI*915.0e6*t+(3.141592653589793/2))+1)))-0.8535533905932737), 0))
in MATLAB and visualize how this function would change in time?

Best Answer

Andong - I'm not sure if the below is exactly what you are looking for...when I tried it, it wasn't entirely obvious the changes over time (perhaps there aren't many?).
[X,Y] = meshgrid(-100:100,-100:100);
figure;
for t = 0:100
Z = (max(ceil(max(0.8535533905932737,(0.5*(sin((5)*atan2(Y,X)+2*pi*915.0e6*t+(3.141592653589793/2))+1)))-0.8535533905932737), 0));
plot3(X,Y,Z);
%view([-90 90]);
pause(0.05);
end