User:Josiah425:Implementing Function Handles: Difference between revisions

From Octave
Jump to navigation Jump to search
(Created page with " == Requirements == * Lazy vs eagerness ## lazy if function does not exist in scope, function remains lazy afterwards ## eager when function does exist in scope * Recognize c...")
(No difference)

Revision as of 23:22, 31 August 2017

Requirements

  • Lazy vs eagerness
    1. lazy if function does not exist in scope, function remains lazy afterwards
    2. eager when function does exist in scope
  • Recognize class method vs function call

e.g. s= @sin; s(cls_with_sin_method) should call the appropriate method and not sin ()