You are here:
Symbol Reference >
MtxVec Namespace
>
Classes
>
TMtx Class
>
public
>
TMtx.MeanRows Method
MtxVec VCL
Example
TMtx.MeanRows Method
var
A:
TMtx
; res:
TVec
;
begin
A := TMtx.Create; res := TVec.Create;
try
A.SetIt(2,2,false,[1,5, -3,6]); A.MeanRows(res);
// res = (3, 1.5)
finally
A.Free; res.Free;
end
;
end
;
Copyright (c) 1999-2025 by Dew Research. All rights reserved.