set_temporal_coordinate_grid()
This function is deprecated and should not be used. It has been replaced by set_time_samples and set_coordinate_grid.
Description: Creates a coordinate grid for use with transient functions.
Usage
tcg = set_temporal_coordinate_grid(vector, time_vector);
tcg = set_temporal_coordinate_grid(vector, tmin, tmax, deltat);
tcg = set_temporal_coordinate_grid(delta, xmin, xmax, ymin, ymax, zmin, zmax, time_vector);
tcg = set_temporal_coordinate_grid(delta, xmin, xmax, ymin, ymax, zmin, zmax, tmin, tmax, deltat);
Arguments
- vector A vector containing a list of coordinates.
- time_vector A vector containing an explicit list of sampling points.
- delta The difference between two data points in a coordinate direction. Should be a matrix of the form [ dx dy dz ].
- xmin The lowest x plane.
- xmax The highest x plane.
- ymin The lowest y plane.
- ymax The highest y plane.
- zmin The lowest z plane.
- zmax The highest z plane.
- tmin The starting time.
- tmax The ending time.
- deltat The difference between adjacent time samples.
Output Parameters
- tcg A temporal coordinate grid struct.
Notes
Calling this function with no arguments will cause the program to
prompt the user for each required value.

