You are here:
Symbol Reference >
MtxExpr Namespace
>
Classes
>
Vector Record
>
public
>
Cbrt Method
>
Vector.Cbrt Method ()
MtxVec VCL
Vector.Cbrt Method ()
Vector Record
|
Vector Members
|
MtxExpr Namespace
|
Cbrt Method
|
Example
|
See Also
Collapse All
The cube root.
Pascal
function
Cbrt
:
TMtxVec
;
overload
;
Description
Calculate the cube root of all calling object elements in-place.
See Also
InvCbrt
Example
var
v,w:
Vector
;
begin
v.SetIt(false,[1,8]); v.Cbrt;
// v = [1,2], same as:
v := Cbrt(v); w := Cbrt(v);
//same as:
w.Cbrt(v);
end
;
Examples on GitHub
Group
Cbrt Method
Links
Vector Record
,
Vector Members
,
MtxExpr Namespace
,
Cbrt Method
,
Example
,
See Also
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic?
Send feedback!