You are here:
Symbol Reference >
clMtxExpr Namespace
>
Classes
>
clMatrix Record
>
public
>
Scale Method
>
clMatrix.Scale Method (double)
MtxVec VCL
Example
clMatrix.Scale Method (double)
var
v:
clMatrix
;
begin
v.CopyFromArray(2,2,TSingleArray.Create(2,3,5));
// v = [2,3,5]
v.Scale(3);
// v = [6,9,15]
end
;
Copyright (c) 1999-2025 by Dew Research. All rights reserved.