Code covered by the BSD License  

Highlights from
4 Dimensional visualization

image thumbnail
from 4 Dimensional visualization by Divahar Jayaraman
This is to visualize the functions of 3 variables: z=f(x,y,t), which becomes 4 dimensional problem

Create_Volume.m
[X,Y,Z] = meshgrid(-2:.07:2,-2:.07:2,-2:.07:2);
V = X.*exp(-X.^2-Y.^2-Z.^2);

Contact us