ADA Basics – III
SEPARATORS: separate (MY_S) function MY_F return BOOLEAN is begin TEXT_IO.PUT_LINE (“In function MY_F”); return TRUE; end MY_S; Separates can be compiled in different libraries Separates should be compiled last […]
SEPARATORS: separate (MY_S) function MY_F return BOOLEAN is begin TEXT_IO.PUT_LINE (“In function MY_F”); return TRUE; end MY_S; Separates can be compiled in different libraries Separates should be compiled last […]
ARRAYS: A: array (INTEGER range 1 .. 10) of INTEGER; — Initializing array for I in 1 .. 10 loop A(I) := 0; end loop; A2 : array (INTEGER range […]
ADA Types: ADA – Basic Types – Objects: — Type declarations type MY_T is …; — user defined type type YOUR_T is …; — another user defined type — Object […]
Component Diagram : A component diagram provides a physical view of the system. Its purpose is to show the dependencies that the software has on the other software components (e.g., […]
State Chart Diagram : The statechart diagram models the different states that a class can be in and how that class transitions from state to state. It can be argued […]
Use- Case Diagrams : A use case illustrates a unit of functionality provided by the system. The main purpose of the use-case diagram is to help development teams visualize the […]
Collaboration diagrams Interaction diagrams show a series of method invocations among a group of objects. One type of interaction diagram is a collaboration diagram, which is essentially an object diagram […]
What is UML? Ans: “The Unified Modeling Language (UML) is a language for specifying, visualizing, constructing, and documenting the artifacts of software systems, as well as for business modeling and […]
Loops : Loops are an important component of flow control that enables matlab to repeat multiple statements in specific and controllable ways Simple repetition in matlab is controlled by two […]
Startup and Shutdown : Matlab (Windows) : Start MATLAB program (Windows platforms) Exit : Terminate MATLAB program (same as quit) Matlabrc : Master Startup M-file for MATLAB -automatically executed by […]