Quantcast

Simple question about control package

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Simple question about control package

Reich, Matthew

Hello,

 

The control package contains functions of the form ‘@lti/<fn name>’; for example @lti/feedback.  After installing and loading the control package, functions without the ‘@lti’ prefix are in the execution path.  However, ‘@lti’ functions are not.  At the command line ‘help @lti/feedback’ returns the expected help, but, consistent with syntax, ‘@lti/feedback’ does not name the function.

 

How can functions that begin with ‘@lti’ , or  other ‘@<name> functions be accessed?

 

Thank you,

 

 

Matthew Reich

Hardware Engineer

Noyes Test and Inspection Division
Description: Description: AFL
[hidden email]

TEL: 978.455.9204

FAX: 978.455.9237
www.AFLglobal.com

 


_______________________________________________
Help-octave mailing list
[hidden email]
https://mailman.cae.wisc.edu/listinfo/help-octave
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Simple question about control package

Alexander Barth-3
Dear Matthew

Directories starting with @ represent classes. To use the methods inside the @-directory you have to first instantiate the class:

obj = lti(some parameters ... );

Then you can call the method:

feedback(lti, other parameters, ...)


On Tue, Mar 5, 2013 at 10:27 PM, Reich, Matthew <[hidden email]> wrote:

Hello,

 

The control package contains functions of the form ‘@lti/<fn name>’; for example @lti/feedback.  After installing and loading the control package, functions without the ‘@lti’ prefix are in the execution path.  However, ‘@lti’ functions are not.  At the command line ‘help @lti/feedback’ returns the expected help, but, consistent with syntax, ‘@lti/feedback’ does not name the function.

 

How can functions that begin with ‘@lti’ , or  other ‘@<name> functions be accessed?

 

Thank you,

 

 

Matthew Reich

Hardware Engineer

Noyes Test and Inspection Division
Description: Description: AFL
[hidden email]

TEL: <a href="tel:978.455.9204" value="+19784559204" target="_blank">978.455.9204

FAX: <a href="tel:978.455.9237" value="+19784559237" target="_blank">978.455.9237
www.AFLglobal.com

 


_______________________________________________
Help-octave mailing list
[hidden email]
https://mailman.cae.wisc.edu/listinfo/help-octave



_______________________________________________
Help-octave mailing list
[hidden email]
https://mailman.cae.wisc.edu/listinfo/help-octave
Loading...