1 2 3 4 5 6 7 8 9 10 11 12 13
syntax = "proto3"; package wpi.proto; message ProtobufMatrix { uint32 num_rows = 1; uint32 num_cols = 2; repeated double data = 3; } message ProtobufVector { repeated double rows = 1; }