Add css and js. Add lots of org mode files.

This commit is contained in:
2019-03-22 12:03:59 +01:00
parent ca64e189b8
commit 2914d01e8f
54 changed files with 4756 additions and 676 deletions

View File

@@ -0,0 +1,14 @@
%%
clear; close all; clc;
%%
sys_0 = initializeHexapod(struct('actuator', 'piezo', 'jacobian', 0));
sys_100 = initializeHexapod(struct('actuator', 'piezo', 'jacobian', 100));
sys_200 = initializeHexapod(struct('actuator', 'piezo', 'jacobian', 1000000));
%%
K_0 = getStiffnessMatrix(sys_0.Leg.k.ax, sys_0.J );
K_100 = getStiffnessMatrix(sys_100.Leg.k.ax, sys_100.J);
K_200 = getStiffnessMatrix(sys_200.Leg.k.ax, sys_200.J);
%%