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

Multiply object elements with Value.

Syntax
C#
Visual Basic
public TMtxVec Mul(double Value);

Multiply all calling object elements with Value in-place.

var v: TVec; begin v:= TVec.Create; try v.SetIt(false,[2,3,5]); // v = [2,3,5] v.Mul(3); // v = [6,9,15] finally v.Free; end; end;
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!