WeibullDataSet.AddSuspension: Difference between revisions
Jump to navigation
Jump to search
Albert Szeto (talk | contribs) No edit summary |
Albert Szeto (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
Inserts a suspension point to the WeibullDataSet. | Inserts a suspension point to the WeibullDataSet. | ||
== | == Method Syntax == | ||
{{APIName|AddSuspension(}} | {{APIName|AddSuspension(}} | ||
{{APIPrefix|ByVal}} | {{APIPrefix|ByVal}} |
Revision as of 17:38, 18 September 2013
Inserts a suspension point to the WeibullDataSet.
Method Syntax
AddSuspension( ByVal Value As Double , ByVal NumberInGroup As Integer )
Parameters
Value The suspension point in time.
NumberInGroup The number of units that were suspended at the Value time
Adds a suspension data point to the collection of data points in the data set.
Usage Example
Declare the WeibullDataSet. See New WeibullDataSet for additional details.
Dim WDS as New WeibullDataSet
Add values to the raw data.
WDS.AddSuspension(1, 1) WDS.AddSuspension(2, 1) WDS.AddSuspension(3, 1)