Module for creating a meshgrid from two vectors
This module provides a subroutine to create a meshgrid.
| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| type(meshgrid_indexing), | public, | parameter | :: | INDEXING_XY | = | meshgrid_indexing(1, "XY") | |
| type(meshgrid_indexing), | public, | parameter | :: | INDEXING_IJ | = | meshgrid_indexing(2, "IJ") |
Make N-dimensional meshgrid from two vectors x_vector and y_vector
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(meshgrid_indexing), | intent(in), | optional | :: | indexing | ||
| logical, | intent(in), | optional | :: | strict_mode | ||
| logical, | intent(out) | :: | use_ij_indexing | |||
| logical, | intent(out) | :: | use_xy_indexing |