Table of Contents
EXPERIMENT   AIM                                               DATE   GRADE   SIGNATURE
NO
01           Creating a One and Two-Dimensional Array
             (Row / Column Vector) (Matrix of given size)
             then,
             (A). Performing Arithmetic Operations -
             Addition, Subtraction, Multiplication and
             Exponentiation.
             (B). Performing Matrix operations - Inverse,
             Transpose, Rank with plots.
02           Performing Matrix Manipulations -
             Concatenating, Indexing, Sorting, Shifting,
             Reshaping, Resizing and Flipping about a
             Vertical Axis / Horizontal Axis; Creating
             Arrays X & Y of given size (1 x N) and
             Performing
             (A). Relational Operations - >, <, ==, <=, >=,
             ~=
             (B). Logical Operations - ~, &, |, XOR
03           Generating a set of Commands on a given
             Vector (Example: X = [1 8 3 9 0 1]) to
             (A). Add up the values of the elements
             (Check with sum)
             (B). Compute the Running Sum (Check with
             sum), where Running Sum for element j =
             the sum of the elements from 1 to j,
             inclusive.
             (C) Generating a Random Sequence using
             rand() / randn() functions and plot them.
04           Evaluating a given expression and rounding
             it to the nearest integer value using Round,
             Floor, Ceil and Fix functions; Also,
             generating and Plots of
             (A) Trigonometric Functions - sin(t), cos(t),
             tan(t), sec(t), cosec(t) and cot(t) for a given
             duration, ‘t’.
             (B) Logarithmic and other Functions –
             log(A), log10(A), Square root of A, Real nth
             root of A.
05           Creating a vector X with elements, Xn = (-
             1)n+1/(2n-1) and Adding up 100 elements
             of the vector, X; And, plotting the functions,
             x, x3, ex, exp(x2) over the interval 0 < x < 4
             (by choosing appropriate mesh values for x
             to obtain smooth curves), on A Rectangular
             Plot
06   Generating a Sinusoidal Signal of a given
     frequency with Titling, Labelling, Adding
     Text, Adding Legends, Printing Text in Greek
     Letters, Plotting as Multiple and Subplot.
     Time scale the generated signal for different
     values. E.g. 2X, 4X, 0.25X, 0.0625X.
07   Solving First, Second and third Order
     Ordinary Differential Equation using Built-in
     Functions and plot.
08   Writing brief Scripts starting each Script
     with a request for input (using input) to
     Evaluate the function h(T) using if-else
     statement, where,
     h(T) = (T – 10) for 0 < T < 100 = (0.45 T +
     900) for T > 100. Exercise: Testing the
     Scripts written using A). T = 5, h = -5 and B).
     T = 110, h =949.5
09   Generating a Square Wave from sum of Sine
     Waves of certain Amplitude and
     Frequencies.
10   Basic 2D and 3D plots: parametric space
     curve. polygons with vertices. 3D contour
     lines, pie and bar charts.