Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void ViewValues(TMtxVec obj) | View and edit matrix/vector values. |
| 2 | void ViewValues(TMtxVec obj, String FormCaption) | View and edit matrix/vector values. |
| 3 | void ViewValues(TMtxVec obj, String FormCaption, Boolean Modal) | View and edit matrix/vector values. |
| 4 | void ViewValues(TMtxVec obj, String FormCaption, Boolean Modal, Boolean StayOnTop, Boolean Editable) | Bring up the matrix or vector values editor. |
| 5 | void ViewValues(TMtxVecInt obj) | View and edit integer vector/matrix values. |
| 6 | void ViewValues(TMtxVecInt obj, String FormCaption) | |
| 7 | void ViewValues(TMtxVecInt obj, String FormCaption, Boolean Modal) | |
| 8 | void ViewValues(TMtxVecInt obj, String FormCaption, Boolean Modal, Boolean StayOnTop, Boolean Editable) |
Overload 1: void ViewValues(TMtxVec obj)
View and edit matrix/vector values.
| # | Name | Description |
|---|---|---|
| 1 | obj | Matrix or vector to be edited. |
Result: stored in self (calling object)
Examples
using Dew.Math;
using Dew.Math.Controls;
namespace Dew.Examples
{
private void Example()
{
Vector v = new Vector(50);
v.Ramp();
MtxVecEdit.ViewValues(v);
}
}
Overload 2: void ViewValues(TMtxVec obj, String FormCaption)
View and edit matrix/vector values.
| # | Name | Description |
|---|---|---|
| 1 | obj | Matrix or vector to be edited. |
| 2 | FormCaption | Editor form title. |
Result: stored in self (calling object)
Examples
using Dew.Math;
using Dew.Math.Controls;
namespace Dew.Examples
{
private void Example()
{
Vector v = new Vector(50,true);
m.RandGauss();
MtxVecEdit.ViewValues(m,"Random vector values");
}
}
Overload 3: void ViewValues(TMtxVec obj, String FormCaption, Boolean Modal)
View and edit matrix/vector values.
| # | Name | Description |
|---|---|---|
| 1 | obj | Matrix or vector to be edited. |
| 2 | FormCaption | Editor form title. |
| 3 | Modal | If true, editor form is shown as modal form. If false, editor form is shown as modeless form. |
Result: stored in self (calling object)
Examples
using Dew.Math;
using Dew.Math.Controls;
namespace Dew.Examples
{
private void Example()
{
Vector v = new Vector(50,true);
v.RandGauss();
MtxVecEdit.ViewValues(v,"Random vector values",true);
}
}
Overload 4: void ViewValues(TMtxVec obj, String FormCaption, Boolean Modal, Boolean StayOnTop, Boolean Editable)
Bring up the matrix or vector values editor.
| # | Name | Description |
|---|---|---|
| 1 | obj | Matrix or vector to be edited. |
| 2 | FormCaption | Editor form title. |
| 3 | Modal | If true, editor form is shown as modal form. If false, editor form is shown as modeless form. |
| 4 | StayOnTop | Controls editor form TopMost property. |
| 5 | Editable | If true, matrix or vector properties and values can be edited. |
Result: stored in self (calling object)
Examples
using Dew.Math;
using Dew.Math.Controls;
namespace Dew.Examples
{
private void Example()
{
Matrix m = new Matrix(50,4);
m.RandGauss();
MtxVecEdit.ViewValues(m,"Random matrix",true,false,true);
}
}
Overload 5: void ViewValues(TMtxVecInt obj)
View and edit integer vector/matrix values.
| # | Name | Description |
|---|---|---|
| 1 | obj | Vector to be edited. |
Result: stored in self (calling object)
Overload 6: void ViewValues(TMtxVecInt obj, String FormCaption)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | obj | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | FormCaption | String |
Result: stored in self (calling object)
Overload 7: void ViewValues(TMtxVecInt obj, String FormCaption, Boolean Modal)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | obj | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | FormCaption | String | |
| 3 | Modal | Boolean |
Result: stored in self (calling object)
Overload 8: void ViewValues(TMtxVecInt obj, String FormCaption, Boolean Modal, Boolean StayOnTop, Boolean Editable)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | obj | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | FormCaption | String | |
| 3 | Modal | Boolean | |
| 4 | StayOnTop | Boolean | |
| 5 | Editable | Boolean |
Result: stored in self (calling object)