nass-simscape/initialize/initializeGround.m
Thomas Dehaeze dcfe29b026 [WIP] Create sub-folders for STEP files
Include step path into smidata object
2018-10-11 10:25:57 +02:00

10 lines
168 B
Matlab

function [] = initializeGround()
%%
ground = struct();
ground.shape = [2, 2, 0.5]; % m
%% Save
save('./mat/stages.mat', 'ground', '-append');
end