public Matrix Product( Matrix B )
declare @A sqx.Matrix = '1,0,1;2,1,1;0,1,1;1,1,2' declare @B sqx.Matrix = '1,2,1;2,3,1;4,2,2' print @A.Product(@B).ToString() /* 5,4,3; 8,9,5; 6,5,3; 11,9,6*/
2024 Miguel A. Garcia - Software Research & Development