ABSTRACT

MATLAB has a very powerful way to define variables. Most programming languages have to define variables before they are used for the first time. MATLAB does not need to do that. Each variable is defined as they are used. If in a procedure we need to define the variable Y0, it is defined the first time we use it. Thus, if we write >> Y0 = 1  Y0 =   1