v1 = TransformationMatrices.multipleResolve1(T, v2);
This function returns vectors v resolved in frame 1 (=v1) from vectors v resolved in frame 2 (=v2) using the transformation matrix T that describes the orientation to rotate frame 1 into frame 2.
function multipleResolve1 extends Modelica.Icons.Function; input TransformationMatrices.Orientation T "Orientation object to rotate frame 1 into frame 2"; input Real v2[3, :] "Vectors in frame 2"; output Real v1[3, size(v2, 2)] "Vectors in frame 1"; end multipleResolve1;