|
|
Line 1: |
Line 1: |
| {{Template:APIClass|ALTADataSet Class|ALTADataSet}}
| | #REDIRECT [[ALTADataSet_Class]] |
| {{Template:ALTADataSet.PlotUseStress.Cmt}}
| |
| | |
| To set the use stress level for calculations, use the [[CModel.SetUseStress|SetUseStress]] method on [[ALTADataSet Class|ALTADataSet]].FittedModel.
| |
| | |
| == Syntax==
| |
| <ul><li>
| |
| PlotUseStress(
| |
| Index
| |
| {{APIPrefix|As Integer}}
| |
| )
| |
| </li></ul>
| |
| | |
| Parameters
| |
| :''Index'': The index of the stress column (e.g., 0 = the first stress, 1 = the second, etc.).
| |
| | |
| Value
| |
| :Type: ''double''
| |
| | |
| == Usage Example ==
| |
| This example demonstrates how to add a stress and set its stress transformation.
| |
| {{APIComment|'Declare the ALTADataSet. See [[ALTADataSet Class|ALTADataSet]].}}
| |
| Dim ALTADS as New ALTADataSet
| |
|
| |
| {{APIComment|'Add a new stress.}}
| |
| ALTADS.AddStressDefinition("Stress1")
| |
|
| |
| {{APIComment|'Set the use stress level (to be used in plots) for the first stress.}}
| |
| ALTADS.PlotUseStress(0) = 200
| |