You are here:
Symbol Reference >
MtxExpr Namespace
>
Classes
>
Matrix Record
>
public
>
Cbrt Method
>
Matrix.Cbrt Method ()
MtxVec VCL
Matrix.Cbrt Method ()
Matrix Record
|
Matrix 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:
Matrix
;
begin
v.SetIt(1,2,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
Matrix Record
,
Matrix 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!