MATLAB - Object-oriented Programming

Object-oriented Programming

MATLAB's support for object-oriented programming includes classes, inheritance, virtual dispatch, packages, pass-by-value semantics, and pass-by-reference semantics.

classdef hello methods function doit(this) disp('Hello!') end end end

When put into a file named hello.m, this can be executed with the following commands:

>> x = hello; >> x.doit; Hello!

Read more about this topic:  MATLAB

Famous quotes containing the word programming:

    If there is a price to pay for the privilege of spending the early years of child rearing in the driver’s seat, it is our reluctance, our inability, to tolerate being demoted to the backseat. Spurred by our success in programming our children during the preschool years, we may find it difficult to forgo in later states the level of control that once afforded us so much satisfaction.
    Melinda M. Marshall (20th century)