dcfe29b026
Include step path into smidata object
10 lines
168 B
Matlab
10 lines
168 B
Matlab
function [] = initializeGround()
|
|
%%
|
|
ground = struct();
|
|
|
|
ground.shape = [2, 2, 0.5]; % m
|
|
|
|
%% Save
|
|
save('./mat/stages.mat', 'ground', '-append');
|
|
end
|