You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Classes > Matrix Structure > Matrix Methods > Cbrt Method > Matrix.Cbrt Method ()
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
Matrix.Cbrt Method ()

The cube root.

Syntax
C#
Visual Basic
public TMtxVec Cbrt();

Calculate the cube root of all calling object elements in-place.

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;
Copyright (c) 1999-2022 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!