You are here:
Symbol Reference >
clMtxVec Namespace
>
Classes
>
TOpenCLVector Class
>
public
>
Ramp Method
>
TOpenCLVector.Ramp Method ()
MtxVec VCL
Example
TOpenCLVector.Ramp Method ()
var
a:
TOpenCLVector
;
begin
clMtxVec.CreateIt
(a);
try
a.Size(5,True); a.Ramp(0,
PI
); a.Sin;
finally
clMtxVec.FreeIt
(a);
end
;
end
;
which is identical to:
clMtxVec.CreateIt
(a);
try
a.Size(5,True);
for
i:= 0
to
a.Length-1
do
a[i] := sin(i *
PI
);
finally
clMtxVec.FreeIt
(a);
end
;
Copyright (c) 1999-2025 by Dew Research. All rights reserved.