Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Sgn: TMtxVec; | Computes signum function of calling object elements. |
| └ indexed: function Sgn(Index: Integer; Len: Integer): TMtxVec; | ||
| 2 | function Sgn(const Src: TMtxVec): TMtxVec; | Computes signum function from Src elements and stores the result in the calling object. |
| └ indexed: function Sgn(const Src: TMtxVec; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVec; |
Overload 1: function Sgn: TMtxVec;
Computes signum function of calling object elements.
Result: stored in self (calling object), returns self for chaining
Signum(X) is 1 for X > 0 , equal to zero for X = 0 and -1 for X < 0.
var
a, expected: Vector;
begin
a := [-3.0, -1.0, 1.0, 2.0];
a.Sgn;
expected := [-1.0, -1.0, 1.0, 1.0];
if not a.IsEqual(expected, 1e-10, TCompare.cmpAbsolute) then
raise Exception.Create('Vector.Sgn: mismatch');
end;
Indexed: function Sgn(Index: Integer; Len: Integer): TMtxVec;
Computes signum function of calling object elements [Index..Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | Integer | start index |
| 2 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
Signum(X) is 1 for X > 0 , equal to zero for X = 0 and -1 for X < 0.
Overload 2: function Sgn(const Src: TMtxVec): TMtxVec;
Computes signum function from Src elements and stores the result in the calling object.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVec |
Result: stored in self (calling object), returns self for chaining
Size and Vector.Complex properties of calling object are adjusted automatically. Signum(X) is 1 for X > 0 , equal to zero for X = 0 and -1 for X < 0.
var
a, x, expected: Vector;
begin
x := [-3.0, -1.0, 1.0, 2.0];
a.Sgn(x);
expected := [-1.0, -1.0, 1.0, 1.0];
if not a.IsEqual(expected, 1e-10, TCompare.cmpAbsolute) then
raise Exception.Create('Vector.Sgn: mismatch');
end;
Indexed: function Sgn(const Src: TMtxVec; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVec;
Computes signum function from Src elements [SrcIndex..SrcIndex+Len-1] and stores the result in the calling object [Index..Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVec | |
| 2 | SrcIndex | Integer | source start index |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
Size and Vector.Complex properties of calling object are adjusted automatically. Signum(X) is 1 for X > 0 , equal to zero for X = 0 and -1 for X < 0.