You are here:
Symbol Reference >
Dew Namespace
>
Dew.Math Namespace
>
Classes
>
TMtxVec Class
>
TMtxVec Methods
>
Sin Method
>
TMtxVec.Sin Method ()
Dew Math for .NET
TMtxVec.Sin Method ()
TMtxVec Class
TMtxVec Members
Dew.Math Namespace
Sin Method
Example
See Also
Collapse All
Sine function.
Syntax
C#
Visual Basic
public
TMtxVec
Sin
();
Public
Function
Sin
()
As
TMtxVec
Remarks
Calculate the sine of all caling object elements in-place.
See Also
ArcSin
,
SinCos
Example
using
Dew.Math
;
using
Dew.Math.Units
;
namespace
Dew.Examples() {
void
Example() {
TVec
a; MtxVec.CreateIt(
out
a);
try
{ a.SetIt(
true
,
new
double
[] {1,-2,3,4}); a.Sin();
// Computes complex sine
}
finally
{ MtxVec.FreeIt(
ref
a); } } }
Group
Sin Method
Links
TMtxVec Class
,
TMtxVec Members
,
Dew.Math Namespace
,
Sin Method
,
Example
,
See Also
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
Contents
|
Index
|
Home
What do you think about this topic?
Send feedback!