Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
e05d2c186b8e2801f6483cec20c1ae232f2d73d2
/
.
/
frc971
/
control_loops
/
matlab
/
writeMatHeaderFlash.m
blob: 88a6cc637c5703e494ac268a651c38bcf1aaa460 [
file
] [
log
] [
blame
]
function writeMatHeaderFlash
(
fd
,
number_of_states
,
number_of_outputs
)
fprintf
(
fd
,
'typedef StateFeedbackLoop<%d, %d> MatrixClass;\n'
,
number_of_states
,
number_of_outputs
);
fprintf
(
fd
,
'#define MATRIX_INIT '
);
end