nass-simscape/initialize/initializeGround.m

10 lines
168 B
Mathematica
Raw Normal View History

function [] = initializeGround()
%%
2018-06-16 22:57:54 +02:00
ground = struct();
ground.shape = [2, 2, 0.5]; % m
%% Save
save('./mat/stages.mat', 'ground', '-append');
2018-06-16 22:57:54 +02:00
end