using Dew.Math;
using Dew.Math.Units;
namespace Dew.Examples()
{
void Example()
{
TMtx A,B;
clMtxVec.CreateIt(
out A,
out B);
try
{
A.SetIt(2,2,
true,
new double[]
{1,0, 2,0,
2,0 4,1}));
// 2x2, complex matrix
B.ArcTan(A);
}
finally
{
clMtxVec.FreeIt(
ref A,
ref B);
}
}
}