On Fri, 2026-02-13 at 03:04 +0000, Wolfgang Gaggl wrote:
How would I send a mtx matrix object via netsend to a pdreceive instance? I would like to use this route to send the matrix to a different program. I guess it needs to be serialized first, is there an example somewhere maybe?
From what I understand, mtx messages are basically number lists. You can send them with [netsend] without any further serialization. However, you probably need to parse them on the receiving end, so that a message:
'2 2 0 1 2 3'
is interpreted as a matrix:
0 1 2 3
Roman