グリッド内にボールがある 3D グリッドを作成する関数を書きたいと思います。3Dである必要があります。私はこの例を見つけましたが、それはまさに私が欲しいものですが、これを関数 m-file に追加する方法がわかりません。
これは私のコードです:
function kgrid = makeGrid(Nx, dx, Ny, dy);
% create the computational grid
Nx = 64; % number of grid points in the x direction
Ny = 64; % number of grid points in the y direction
Nz = 64; % number of grid points in the z direction
dx = 0.1e-3; % grid point spacing in the x direction [m]
dy = 0.1e-3; % grid point spacing in the y direction [m]
dz = 0.1e-3; % grid point spacing in the z direction [m]
kgrid = makeGrid(Nx, dx, Ny, dy, Nz, dz);
end