6 lines
118 B
Matlab
6 lines
118 B
Matlab
function z = grid(s, d)
|
|
% GRID - the grid in one domain.
|
|
%
|
|
n = domainIndex(s,d);
|
|
d = s.domains(n);
|
|
z = gridPoints(d);
|