WeibullDataSet.AddFreeForm
Jump to navigation
Jump to search
Adds a free-form data point to the data set, using the specified time and percentage values.
Syntax
- AddFreeForm( TimeAs Double, PercentAs Double)
Parameters
- Time: The x-axis value (independent variable).
- Percent: The cumulative percentage of failures for the y-axis value (e.g., 90 = 90%).
Usage Example
'Declare the WeibullDataSet. See WeibullDataSet. Dim WDS as New WeibullDataSet 'Add free form data to the data set. WDS.AddFreeForm(100, 10) WDS.AddFreeForm(200, 20) WDS.AddFreeForm(300, 30)