WeibullDataSet.AddFreeForm: Difference between revisions
Jump to navigation
Jump to search
John Leavitt (talk | contribs) No edit summary |
Chris Kahn (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
{{Template:WeibullDataSet.AddFreeForm.Cmt}} | {{Template:WeibullDataSet.AddFreeForm.Cmt}} | ||
== | == Syntax == | ||
{{Template:WeibullDataSet.AddFreeForm}} | {{Template:WeibullDataSet.AddFreeForm}} | ||
Parameters | |||
:''Time'': The x-axis value (independent variable). | |||
The | :''Percent'': The cumulative percent of failures for the y-axis value, entered as a percentage. | ||
The cumulative percent of failures for the | |||
== Usage Example == | == Usage Example == |
Revision as of 18:54, 11 February 2014
Adds a free-form data point to the data set, using the specified time and percentage values.
Syntax
- AddFreeForm( Time As Double , Percent As Double )
Parameters
- Time: The x-axis value (independent variable).
- Percent: The cumulative percent of failures for the y-axis value, entered as a percentage.
Usage Example
Declare the WeibullDataSet. See New WeibullDataSet for additional details.
Dim WDS as New WeibullDataSet
Add values to the raw data.
WDS.AddFreeForm(100, 10) 'At 100hr, the probability of failure is 10% WDS.AddFreeForm(200, 20) 'At 200hr, the probability of failure is 20% WDS.AddFreeForm(300, 30) 'At 300hr, the probability of failure is 30%