T O P I C R E V I E W |
Hildebrand |
Posted - 08/01/2002 : 11:18:02 AM I have created a user-defined function, but would like to be able to fix some of its parameters. I know how this is done in Origin, but would like to implement it in my LabTalk script. I am doing the following at the moment,
nlsf.init(); nlsf.func$=GaussBen; //GaussBen is user-defined. y0=0; xc=0; w=0.0000003; A=0.0000000625;
I am trying to fix y0 to zero, but will want to fix others in the future. Any help is much appreciated.
Ben
|
1 L A T E S T R E P L I E S (Newest First) |
easwar |
Posted - 08/01/2002 : 4:55:01 PM Hello,
You can use NLSF object properties to do this. For example, nlsf.v1=0; nlsf.v2=0; will set the first and second parameters as fixed.
You can find this and other object properties under the NLSF object in the LabTalk help file.
Easwar OriginLab. |
|
|