Initial Commit.

This commit is contained in:
2025-07-29 21:45:44 +09:00
parent a69350b86e
commit 90231d49ae
38 changed files with 2051 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
function [tgt] = gen_tgt(pos, vel, acc, rcs, str_class)
tgt.pos = pos;
tgt.vel = vel;
tgt.acc = acc;
tgt.rcs = rcs;
tgt.class = str_class;
end