using Dew.Math;
using Dew.Math.Units;
using Dew.Math.Editors;
namespace Dew.Examples
{
private void Example()
{
Vector Coeff =
new Vector(0);
Matrix A =
new Matrix(0,0);
A.SetIt(3,3,
false,
new double[] {1, 4, -1,
2, 1, 5,
3, -2, 0});
Polynoms.PolyCoeff(A,Coeff);
MtxVecEdit.ViewValues(Coeff,"Coefficients");
}
}