WeibullDataSet.AddFreeForm: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{Template:APIClass|WeibullDataSet Class|WeibullDataSet}}
{{Template:APIClass|WeibullDataSet Class|WeibullDataSet}}
Adds a free-form data point to the data set.  
{{Template:WeibullDataSet.AddFreeForm.Cmt}}


== Syntax ==
== Syntax ==
*AddFreeForm( Time{{APIPrefix|As Double}}, Percent{{APIPrefix|As Double}}) {{APIComment|{{Template:WeibullDataSet.AddFreeForm.Cmt}}}}
*AddFreeForm( Time{{APIPrefix|As Double}}, Percent{{APIPrefix|As Double}})
Parameters
Parameters
:''Time'': The x-axis value (independent variable).
:''Time'': The x-axis value (independent variable).

Revision as of 17:47, 20 February 2014


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 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%