Lab Manual
Lab Manual
LAB MANUAL
Basic Simulation Lab
Course Code: ECE 204
1
Contents
1. Preamble 4
2. List of Experiments 5
3. Lab Assessment 6
5. Resources 8
(B). Compute the Running Sum (Check with sum), where Running Sum for
element j = the sum of the elements from 1 to j, inclusive.
Also, Generating a Random Sequence using rand() / randn() functions and plotting
them.
10. Evaluating a given expression and rounding it to the nearest integer value using 33
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.
11. Creating a vector X with elements, Xn = (-1)n+1/(2n-1) and Adding up 100 elements 39
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
2
Rectangular Plot
12. Generating a Sinusoidal Signal of a given frequency (say, 100Hz) and Plotting with 42
Graphical Enhancements - Titling, Labeling, Adding Text, Adding Legends,
Adding New Plots to Existing Plot, Printing Text in Greek Letters, Plotting as
Multiple and Subplot.
13. Solving First Order Ordinary Differential Equation using Built-in Functions. 43
14. Writing brief Scripts starting each Script with a request for input (using input) to 47
Evaluate the function h(T) using if-else statement, where
Exercise : Testing the Scripts written using A). T = 5, h = -5 and B). T = 110, h
=949.5
15. Generating a Square Wave from sum of Sine Waves of certain Amplitude and 50
Frequencies.
16. Basic 2D and 3D plots: parametric space curve, polygons with vertices, 3D contour 55
lines and pie and bar charts.
3
Preamble:
Amity symbolizes an education system that keeps its feet strongly grounded and vision focused
on the future. Its primary objective is to generate future leaders; thus Amity aspires to
continuously evolve all aspects of academics. This mission is inclusive of the educational
content, pedagogy, infrastructure, technology, and resources for educational excellence. Amity
has always strived to keep pace with demands of the dynamic industrial ecosystem along with
supporting and promoting varied student aspirations. Being a research and innovation driven
university, students at Amity experience a rich and scientific approach to teaching and learning.
The onset of pandemic disrupted the academic process worldwide; a smooth transition to remote
mode of teaching and learning was much needed.
Physical distances and the lack of resources may make us unable to perform experiments,
especially when they involve sophisticated instruments. Also, good teachers are always a scarce
resource. Web-based and video-based courses address the issue of teaching to some extent.
Conducting joint experiments by two participating institutions and also sharing costly resources
has always been a challenge. With the present day internet and computer technologies the above
limitations can no more hamper students and researchers in enhancing their skills and
knowledge. Also, in a country such as ours, costly instruments and equipment need to be shared
with fellow researchers to the extent possible. Web enabled experiments can be designed for
remote operation and viewing so as to enthuse the curiosity and innovation into students. This
would help in learning basic and advanced concepts through remote experimentation. Today
most equipment has a computer interface for control and data storage. It is possible to design
good experiments around some of this equipment which would enhance the learning of a student.
Internet-based experimentation further permits use of resources, knowledge, software, and data
available on the web, apart from encouraging skillful experiments being simultaneously
performed at points separated in space (and possibly, time).
4
Lab/ Practicals details
(B). Compute the Running Sum (Check with sum), where Running Sum
for element j = the sum of the elements from 1 to j, inclusive.
4 Evaluating a given expression and rounding it to the nearest integer value PRACTICAL
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.
5
7 Solving First Order Ordinary Differential Equation using Built-in PRACTICAL
Functions.
8 Writing brief Scripts starting each Script with a request for input (using PRACTICAL
input) to Evaluate the function h(T) using if-else statement, where
9 Generating a Square Wave from sum of Sine Waves of certain Amplitude PRACTICAL
and Frequencies.
10 Basic 2D and 3D plots: parametric space curve, polygons with vertices, PRACTICAL
3D contour lines and pie and bar charts.
Assessment/Examination Scheme:
(40%) (60%)
Weightage (%) 15 10 10 5 30 30
6
Course Learning Outcomes:
(Scientific foundation) When faced with a technical problem the student should be able to use
applied scientific knowledge
o 1A: to identify and implement relevant principles of mathematics and computer science.
(Tools) an ability to use the relevant tools necessary for engineering practice.
7
Resources:
Matlab
Millions of engineers and scientists worldwide use MATLAB® to analyze and design the
systems and products transforming our world. The matrix-based MATLAB language is
the world’s most natural way to express computational mathematics. Built-in graphics
make it easy to visualize and gain insights from data. The desktop environment invites
experimentation, exploration, and discovery. These MATLAB tools and capabilities are
all rigorously tested and designed to work together.
MATLAB helps you take your ideas beyond the desktop. You can run your analyses on
larger data sets, and scale up to clusters and clouds. MATLAB code can be integrated
with other languages, enabling you to deploy algorithms and applications within web,
enterprise, and production systems.
Octave Online
Octave Online is a web UI for GNU Octave, the open-source alternative to MATLAB.
Thousands of students, educators, and researchers from around the world use octave
online for numerical operation and developing processing algorithms.
Matlab software may be accessed via Team Viewer and Amity’s virtual lab link:
8
Hyperlink to the resources:
o Mathworks: https://in.mathworks.com/
9
EXPERIMENT NO 1
THEORY:
10
Consider two matrices A and B. If A is an m x n matrix and B is a n x p matrix,
they could be multiplied together to produce an m x n matrix C. Matrix
multiplication is possible only if the number of columns n in A is equal to the
number of rows n in B.In matrix multiplication, the elements of the rows in the
first matrix are multiplied with corresponding columns in the second matrix.Each
element in the (i, j)th position, in the resulting matrix C, is the summation of the
products of elements in ith row of first matrix with the corresponding element in
the jth column of the second matrix.In MATLAB, matrix multiplication is
performed by using the * operator.
The inverse of a matrix does not always exist. If the determinant of the matrix
is zero, then the inverse does not exist and the matrix is singular.
In MATLAB, inverse of a matrix is calculated using the inv function. Inverse of a
matrix A is given by inv(A).
The transpose operation switches the rows and columns in a matrix. It is
represented by a single quote(').
The rank function provides an estimate of the number of linearly independent
rows or columns of a full matrix.
k = rank(A) returns the number of singular values of A that are larger than the
default tolerance, max(size(A))*eps(norm(A)).
k = rank(A,tol) returns the number of singular values of A that are larger than
tol.
PROCEDURE:
To plot the graph of a function, you need to take the following steps:
1. Define x, by specifying the range of values for the variable x, for which
the function is to be plotted.
SUGGESTED PROGRAM:
1)
A=[1 2 3 4];
display(A);
B=[5 6 7 8];
11
display(B);
ADD=A+B;
display(ADD);
SUBTRACT=A-B;
display(SUBTRACT);
MULTIPLY=2*A;
display(MULTIPLY);
DIVISION=B/2;
display(DIVISION);
EXP=exp(A);
display(EXP);
OUTPUT
A=
1 2 3 4
B=
5 6 7 8
ADD =
6 8 10 12
SUBTRACT =
-4 -4 -4 -4
MULTIPLY =
2 4 6 8
DIVISION =
b)
X=[1 20 3; 5 6 7; 8 9 10];
display(X);
RANK=rank(X);
display(RANK);
INVERSE=inv(X);
display(INVERSE);
TRANSPOSE=X';
display(TRANSPOSE);
OUTPUT:
X=
1 20 3
5 6 7
8 9 10
RANK =
INVERSE =
TRANSPOSE =
1 5 8
20 6 9
3 7 10
13
14
EXPERIMENT NO 2
THEORY:
An operator is a symbol that tells the compiler to perform specific mathematical
or logical manipulations. MATLAB is designed to operate primarily on whole
matrices and arrays. Therefore, operators in MATLAB work both on scalar and
non-scalar data. MATLAB allows the following types of elementary operations:
Arithmetic Operators
Relational Operators
Logical Operators
Bitwise Operations
Set Operations
Arithmetic Operators
MATLAB allows two different types of arithmetic operations:
Matrix arithmetic operations
Array arithmetic operations
Matrix arithmetic operations are same as defined in linear algebra. Array
operations are executed element by element, both on one-dimensional and
multidimensional array.
The matrix operators and array operators are differentiated by the period (.)
symbol. However, as the addition and subtraction operation is same for matrices
and arrays, the operator is same for both cases. The following table gives brief
description of the operators:
15
PROCEDURE:
Operator Description
Addition or unary plus. A+B adds A and B. A and B must have
+ the same size, unless one is a scalar. A scalar can be added to a
matrix of any size.
Subtraction or unary minus. A-B subtracts B from A. A and B
- must have the same size, unless one is a scalar. A scalar can be
subtracted from a matrix of any size.
Matrix multiplication. C = A*B is the linear algebraic product of
the matrices A and B. More precisely,
*
For nonscalar A and B, the number of columns of A must equal
the number of rows of B. A scalar can multiply a matrix of any
size.
16
integer, the power is computed by repeated squaring. If the
integer is negative, X is inverted first. For other values of p, the
calculation involves eigenvalues and eigenvectors, such that if
[V,D] = eig(X), then X^p = V*D.^p/V.
Array power. A.^B is the matrix with elements A(i,j) to the B(i,j)
.^ power. A and B must have the same size, unless one of them is a
scalar.
Matrix transpose. A' is the linear algebraic transpose of A. For
'
complex matrices, this is the complex conjugate transpose.
Array transpose. A.' is the array transpose of A. For complex
.'
matrices, this does not involve conjugation.
Relational Operators
Relational operators can also work on both scalar and non-scalar data. Relational
operators for arrays perform element-by-element comparisons between two
arrays and return a logical array of the same size, with elements set to logical 1
(true) where the relation is true and elements set to logical 0 (false) where it is
not.
The following table shows the relational operators available in MATLAB:
Operator Description
< Less than
<= Less than or equal to
> Greater than
>= Greater than or equal to
== Equal to
~= Not equal to
Logical Operators
MATLAB offers two types of logical operators and functions:
Element-wise - these operators operate on corresponding elements of
logical arrays.
Short-circuit - these operators operate on scalar, logical expressions.
17
Element-wise logical operators operate element-by-element on logical arrays.
The symbols &, |, and ~ are the logical array operators AND, OR, and NOT.
Short-circuit logical operators allow short-circuiting on logical operations. The
symbols && and || are the logical short-circuit operators AND and OR.
Bitwise Operations
Bitwise operator works on bits and performs bit-by-bit operation. The truth
tables for &, |, and ^ are as follows:
Assume if A = 60; and B = 13; Now in binary format they will be as follows:
A = 0011 1100
B = 0000 1101
-----------------
A&B = 0000 1100
A|B = 0011 1101
A^B = 0011 0001
~A = 1100 0011
MATLAB provides various functions for bit-wise operations like 'bitwise and',
'bitwise or' and 'bitwise not' operations, shift operation, etc.
The following table shows the commonly used bitwise operations:
Function Purpose
bitand(a, b) Bit-wise AND of integers a and b
18
bitcmp(a) Bit-wise complement of a
bitget(a,pos) Get bit at specified position pos, in the integer array a
bitor(a, b) Bit-wise OR of integers a and b
bitset(a, pos) Set bit at specific location pos of a
Returns a shifted to the left by k bits, equivalent to
multiplying by 2k. Negative values of k correspond to shifting
bitshift(a, k) bits right or dividing by 2|k| and rounding to the nearest
integer towards negative infinite. Any overflow bits are
truncated.
bitxor(a, b) Bit-wise XOR of integers a and b
swapbytes Swap byte ordering
Set Operations
MATLAB provides various functions for set operations, like union, intersection
and testing for set membership, etc.
The following table shows some commonly used set operations:
Function Description
Set intersection of two arrays; returns the values common
intersect(A,B)
to both A and B. The values returned are in sorted order.
Treats each row of A and each row of B as single entities
intersect(A,B,'rows') and returns the rows common to both A and B. The rows
of the returned matrix are in sorted order.
Returns an array the same size as A, containing 1 (true)
ismember(A,B) where the elements of A are found in B. Elsewhere, it
returns 0 (false).
Treats each row of A and each row of B as single entities
ismember(A,B,'rows') and returns a vector containing 1 (true) where the rows of
matrix A are also rows of B. Elsewhere, it returns 0 (false).
Returns logical 1 (true) if the elements of A are in sorted
order and logical 0 (false) otherwise. Input A can be a
issorted(A) vector or an N-by-1 or 1-by-N cell array of strings. A is
considered to be sorted if A and the output of sort(A) are
equal.
19
Returns logical 1 (true) if the rows of two-dimensional
matrix A are in sorted order, and logical 0 (false)
issorted(A, 'rows')
otherwise. Matrix A is considered to be sorted if A and the
output of sortrows(A) are equal.
Set difference of two arrays; returns the values in A that
setdiff(A,B) are not in B. The values in the returned array are in sorted
order.
Treats each row of A and each row of B as single entities
and returns the rows from A that are not in B. The rows of
setdiff(A,B,'rows') the returned matrix are in sorted order.
The 'rows' option does not support cell arrays.
SUGGESTED PROGRAM:
A=ones(2,3)*6;
display(A)
B=ones(3,3);
display(B)
C=[A;B];
display(C);
OUTPUT
A=
6 6 6
6 6 6
B=
1 1 1
20
1 1 1
1 1 1
C=
6 6 6
6 6 6
1 1 1
1 1 1
1 1 1
A=magic(3);
display(A);
A1=rand(3);
display(A1);
A2=pascal(3);
display(A2);
B=sort(A);
display(B);
C=sort(A,'descend');
display(C);
D=sort(A,'ascend');
display(D);
E=sortrows(A,1);
display(E);
OUTPUT`
A=
8 1 6
3 5 7
4 9 2
A1 =
1 1 1
1 2 3
1 3 6
B=
3 1 2
4 5 6
8 9 7
C=
8 9 7
4 5 6
3 1 2
D=
3 1 2
4 5 6
8 9 7
E=
3 5 7
4 9 2
8 1 6
Reshaping/Resizing
X=[1 2 3 4 ; 2 3 4 5 ; 5 6 7 8 ];
display(X);
Y=reshape(X,2,6);
display(Y);
Z=reshape(X,6,2);
22
display(Z);
OUTPUT:
X=
1 2 3 4
2 3 4 5
5 6 7 8
Y=
1 5 3 3 7 5
2 2 6 4 4 8
Z=
1 3
2 4
5 7
2 4
3 5
6 8
Rotation
A=[1 2 3 4 ; 2 3 4 5 ; 5 6 7 8 ];
display(A);
C=rot90(X);
display(C);
OUTPUT :
A=
23
1 2 3 4
2 3 4 5
5 6 7 8
C=
4 5 8
3 4 7
2 3 6
1 2 5
Flipping
A=[1 2 3 4];
display(A);
C=fliplr(A);
display(C);
OUTPUT:
A=
1 2 3 4
C=
4 3 2 1
A=[1 2 3 4; 2 3 4 5 ];
display(A);
C=fliplr(A);
display(C);
24
OUTPUT:
A=
1 2 3 4
2 3 4 5
C=
4 3 2 1
5 4 3 2
Logical Operations
A=[1 2 3 4 5];
display(A);
B=[1 0 0 1 0];
display(B);
C=xor(A,B);
display(C);
OUTPUT :
A=
1 2 3 4 5
B=
1 0 0 1 0
C=
0 1 1 0 1
A=[1 0 1 0 1];
display(A);
B=[1 0 0 1 0];
display(B);
C=or(A,B);
25
display(C);
C=and(A,B);
display(C);
C=not(A);
display(C);
OUTPUT:
A=
1 0 1 0 1
B=
1 0 0 1 0
C=
1 0 1 1 1
C=
1 0 0 0 0
C=
0 1 0 1 0
Relational Operators
A=[1 2 3; 4 5 6; 7 8 9];
B=[7 8 9; 4 5 6; 1 2 3];
display(A);
display(B);
display(A>B);
display(A<B);
26
display(A==B);
display(A~=B);
OUTPUT:
A=
1 2 3
4 5 6
7 8 9
B=
7 8 9
4 5 6
1 2 3
ans =
0 0 0
0 0 0
1 1 1
ans =
1 1 1
0 0 0
0 0 0
ans =
0 0 0
1 1 1
0 0 0
ans =
1 1 1
0 0 0
1 1 1
27
28
EXPERIMENT 3
AIM-a) To generate Random Sequence and plot them
b) To calculate sum matrix, cumulative sum matrix and plot the sum matrix.
THEORY:
When you create random numbers using software, the results are not random in a
strict, mathematical sense. However, software applications, such as MATLAB®,
use algorithms that make your results appear to be random and independent. The
results also pass various statistical tests of randomness and independence. These
apparently random and independent numbers are often described
as pseudorandom and pseudoindependent. You can use these numbers as if they are
truly random and independent. One benefit of using pseudorandom,
pseudoindependent numbers is that you can repeat a random number calculation
at any time. This can be useful in testing or diagnostic situations.
Although repeatability can be useful, it is possible to accidentally repeat your
results when you really want different results. There are several ways to avoid
this problem. The documentation contains several examples that show how to
ensure that your results are different when that is your intention.
All the random number functions, rand, randn, randi, and randperm, draw values
from a shared random number generator. Every time you start MATLAB®, the
generator resets itself to the same state. Therefore, a command such
as rand(2,2) returns the same result any time you execute it immediately
following startup. Also, any script or function that calls the random number
functions returns the same result whenever you restart.
PROCEDURE:
There are four fundamental random number functions: rand, randi, randn,
and randperm. The rand function returns real numbers between 0 and 1 that are
drawn from a uniform distribution. For example,
r1 = rand(1000,1);
30
2)
Z=randn(4,4);
disp(z);
plot(z)
title('random function');
xlabel('random variable');
ylabel('f(x)');
31
OUTPUT
b)
A=magic(4,4);
X=cumsum(A,1);
Y=cumsum(A,2);
Z=sum(A);
V=sum(A,1);
U=sum(A,2);
32
EXPERIMENT 4
AIM-a) 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.
THEORY:
ceil(A) rounds the elements of A to the nearest integers greater than or equal to
A. For complex A, the imaginary and real parts are rounded independently.
Y = round(X) rounds the elements of X to the nearest integers. For complex X,
the imaginary and real parts are rounded independently.
Examples
a=
Columns 1 through 4
-1.9000 -0.2000 3.4000 5.6000
Columns 5 through 6
7.0000 2.4000 + 3.6000i
round(a)
ans =
Columns 1 through 4
-2.0000 0 3.0000 6.0000
Columns 5 through 6
7.0000
floor(A) rounds the elements of A to the nearest integers less than or equal to A.
For complex A, the imaginary and real parts are rounded independently.
Examples
33
a = [-1.9, -0.2, 3.4, 5.6, 7.0, 2.4+3.6i]
a=
Columns 1 through 4
-1.9000 -0.2000 3.4000 5.6000
Columns 5 through 6
7.0000 2.4000 + 3.6000i
floor(a)
ans =
Columns 1 through 4
-2.0000 -1.0000 3.0000 5.0000
Columns 5 through 6
7.0000 2.0000 + 3.0000i
a=
Columns 1 through 4
-1.9000 -0.2000 3.4000 5.6000
Columns 5 through 6
7.0000 2.4000 + 3.6000i
fix(a)
ans =
Columns 1 through 4
-1.0000 0 3.0000 5.0000
Columns 5 through 6
34
7.0000 2.0000 + 3.0000i
PROCEDURE:
To plot the graph of a function, you need to take the following steps:
1. Define x, by specifying the range of values for the variable x, for which
the function is to be plotted.
SUGGESTED PROGRAM:
a)
t=0:0.1:10*pi;
A=1; F=100;
x=A.*sin(2*pi*F*t);
subplot(511);
plot(t,x);
xlabel('time in seconds');
ylabel('sin fuction');
title('plotting the trignometric functions');
y=A.*cos(2*pi*F*t);
subplot(512);
plot(t,y);
xlabel('time in seconds');
ylabel('cos fuction');
title('plotting the trignometric functions');
r=A.*tan(2*pi*F*t);
subplot(513);
plot(t,r);
xlabel('time in seconds');
ylabel('tan fuction');
title('plotting the trignometric functions');
35
z=A.*cosec(2*pi*F*t);
subplot(514);
plot(t,z);
xlabel('time in seconds');
ylabel('cosec fuction');
title('plotting the trignometric functions');
q=A.*cot(2*pi*F*t);
subplot(515);
plot(t,q);
xlabel('time in seconds');
ylabel('cot fuction');
title('plotting the trignometric functions');
e=A.*sec(2*pi*F*t);
subplot(516);
plot(t,e);
xlabel('time in seconds');
ylabel('sec fuction');
title('plotting the trignometric functions');
OUTPUT
b)
x=0:0.1:10;
y=log(x);
36
title('log and exponential functions');
subplot(511);
plot(x,y);
xlabel('time in sec');
ylabel('log fuction');
z=log10(x);
subplot(512);
plot(x,z);
xlabel('time in sec');
ylabel('log fuctn');
u=exp(x);
subplot(513);
plot(x,u);
xlabel('time in sec');
ylabel('expfuction');
v=exp(-x);
subplot(514);
plot(x,v);
xlabel('time in sec');
ylabel('expfuctn');
OUTPUT
c)
A=0:0.1:45;
37
z=sqrt(A);
disp(A);
disp(z);
OUTPUT
EXPERIMENT 5
AIM-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
THEORY:
38
The exp function is an elementary function that operates element-wise on arrays.
Its domain includes complex numbers.Y = exp(X) returns the exponential for
each element of X. For complex , it returns the complex exponential
PROCEDURE
To plot the graph of a function, you need to take the following steps:
1. Define x, by specifying the range of values for the variable x, for which
i. the function is to be plotted.
SUGGESTED PROGRAM:
a)
n=0:100;
Xn=[(-1).^(n+1)]./(2*n-1);
y=Xn;
sum(y);
disp(y);
plot(y);
OUTPUT
39
b)
x=0:1:4;
subplot(411);
plot(x);
title('plot of x');
xlabel('x');
ylabel('y');
y=x.^3;
subplot(412);
plot(y);
title('plot of x cube');
xlabel('x');
ylabel('y');
z=exp(x.^2);
subplot(413);
plot(z);
title('plot of x square');
xlabel('x');
ylabel('y');
40
v=exp(x);
subplot(414);
plot(v);
title('plot of e^x');
xlabel('x');
ylabel('y');
OUTPUT
EXPERIMENT 6
41
THEORY:
The sin function operates element-wise on arrays. The function's domains and
ranges include complex values. All angles are in radians.
Y = sin(X) returns the circular sine of the elements of X.
MATLAB allows you to add title, labels along the x-axis and y-axis, grid lines
and also to adjust the axes to spruce up the graph.
1. The xlabel and ylabel commands generate labels along x-axis and y-axis.
2. The title command allows you to put a title on the graph.
3. The grid on command allows you to put the grid lines on the graph.
4. The axis equal command allows generating the plot with the same scale
factors and the spaces on both
5. axes.
6. The axis square command generates a square plot.
Setting Colors on Graph
MATLAB provides eight basic color options for drawing graphs. The
following table shows the colors and their codes:
Color Code
White w
Black k
Blue b
Red r
Cyan c
Green g
Magenta m
Yellow y
42
Generating Sub-Plots
When you create an array of plots in the same figure, each of these plots is called
a subplot. Thesubplot command is for creating subplots.
Syntax for the command is:
subplot(m, n, p)
where, m and n are the number of rows and columns of the plot array
and p specifies where to put a particular plot.
PROCEDURE
To plot the graph of a function, you need to take the following steps:
1. Define x, by specifying the range of values for the variable x, for which
i. the function is to be plotted.
SUGGESTED PROGRAM:
a)
t=0:0.0001:.5;
a=1;
f=100;
x=a.*sin(2*pi*f*t);
plot(x);
xlabel('time');
ylabel('sine function');
title('plot of sinosoidal signal');
OUTPUT
43
EXPERIMENT 7
THEORY:
44
MATLAB provides the dsolve command for solving differential equations
symbolically.
The most basic form of the dsolve command for finding the solution to a single
equation is :
dsolve('eqn')
where eqn is a text string used to enter the equation.
It returns a symbolic solution with a set of arbitrary constants that MATLAB
labels C1, C2, and so on.
You can also specify initial and boundary conditions for the problem, as comma-
delimited list following the equation as:
dsolve('eqn','cond1', 'cond2',…)
For the purpose of using dsolve command, derivatives are indicated with a D.
For example, an equation like f'(t) = -2*f + cost(t) is entered as:
'Df = -2*f + cos(t)'
Higher derivatives are indicated by following D by the order of the derivative.
For example the equation f"(x) + 2f'(x) = 5sin3x should be entered as:
'D2y + 2Dy = 5*sin(3*x)'
Let us take up a simple example of a first order differential equation: y' = 5y.
s = dsolve('Dy = 5*y')
s=
C2*exp(5*t)
PROCEDURE:
To plot the graph of a function, you need to take the following steps:
1. Define x, by specifying the range of values for the variable x, for which
i. the function is to be plotted.
dsolve(‘Dy=y*x);
OUTPUT
C1*exp(x*t)
EXPERIMENT 8
AIM- 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
Program files can be scripts that simply execute a series of MATLAB® statements,
or they can be functions that also accept input arguments and produce output.
Both scripts and functions contain MATLAB code, and both are stored in text
files with a .m extension. However, functions are more flexible and more easily
extensible.
MATLAB expression, usually consist of variables or smaller expressions joined
by relational operators (e.g., count < limit), or logical functions (e.g., isreal(A)).
Simple expressions can be combined by logical operators (&&, ||, ~) into
compound expressions such as the following. MATLAB evaluates compound
expressions from left to right, adhering to operator precedence rules.
(count < limit) && ((height - offset) >= 0)
Nested if statements must each be paired with a matching end. The if function can
be used alone or with the else and elseif functions. When using elseif and/or else
within an if statement, the general form of the statement is
if expression1
statements1
elseif expression2
statements2
else
statements3
end
PROCEDURE:
clc
T=input(‘enter the value of T for the function h(T)’);
If(0<T&&T<100)
display(‘value of h’);
h=T-10;
elseif(T>100) display(‘value of h’)
h=0.45*T;
h=h+900;
elseif(T<0)
T=0;
else
display(‘error’)
end
OUTPUT
48
EXPERIMENT 9
THEORY:
The Gibbs phenomenon involves both the fact that Fourier sums overshoot at a
jump discontinuity, and that this overshoot does not die out as the frequency
increases.
The three pictures on the right demonstrate the phenomenon for a square
wave (of height ) whose Fourier expansion is
49
More precisely, this is the function f which equals between
and and between and for every integer n;
thus this square wave has a jump discontinuity of height at every integer
multiple of .
As can be seen, as the number of terms rises, the error of the approximation is
reduced in width and energy, but converges to a fixed height. A calculation for
the square wave (see Zygmund, chap. 8.5., or the computations at the end of this
article) gives an explicit formula for the limit of the height of the error. It turns
out that the Fourier series exceeds the height of the square wave by
PROCEDURE:
1. The Fourier series expansion for a square-wave is made up of a sum of odd
harmonics.
2. We start by forming a time vector running from 0 to 10 in steps of 0.1, and
take the sine of all the points.
3. Now add the third harmonic to the fundamental, and plot it.
4. Now use the first, third, fifth, seventh, and ninth harmonics.
5. For a finale, we will go from the fundamental to the 19th harmonic,
creating % vectors of successively more harmonics, and saving all
intermediate steps as % the rows of a matrix.
6. These vectors are plotted on the same figure to show the evolution of
the square wave. Note Gibbs' effect.
50
SUGGESTED PROGRAM:
t=0:0.1:10;
x=sin(t);
plot(t,x);
title('Sine funtion');
xlabel('t');
ylabel('x');
OUTPUT
b)
f=5;
w=2*pi*f;
t=0:0.0001:1;
y=0;
51
for n=1:2:99;
y=y+(1/n).*sin(n*w*t);
end
plot(t,y);
title('Harmonic funtion');
xlabel('x');
ylabel('y');
OUTPUT
c)
f=5;
w=2*pi*f;
52
t=0:0.0001:1;
y=0;
for n=1:2:99;
y=y+(1/n).*sin(n*w*t);
end
plot(t,y);
OUTPUT
53
EXPERIMENT 10
AIM- Basic 2D and 3D plots: parametric space curve, polygons with vertices, 3D
contour lines and pie and bar charts.
THEORY:
ezplot(fun) plots the expression fun(x) over the default domain -2π < x < 2π,
where fun(x) is an explicit function of only x.
fun can be a function handle, a character vector, or a string.
ezplot(fun,[xmin,xmax]) plots fun(x) over the domain: xmin < x < xmax.
ezplot3(funx,funy,funz) plots the spatial curve funx(t), funy(t), and funz(t) over
the default domain 0 < t < 2π.
funx, funy, and funz can be function handles, character vectors, or strings
ezplot3(funx,funy,funz,[tmin,tmax]) plots the curve funx(t), funy(t), and funz(t)
over the domain tmin < t < tmax.
DRAWPOLYGON Draw a polygon specified by a list of points.
drawPolygon(POLY);
Packs coordinates in a single N-by-2 array, with N the vertex number.
drawPolygon(PX, PY);
Specifies coordinates in separate arrays. Both array must be N-by-1,
with N the number of vertices.
drawPolygon(POLYS)
Packs coordinate of several polygons in a cell array. Each element of
54
the array is a Ni-by-2 double array.
[X,Y] = meshgrid(x,y) returns 2-D grid coordinates based on the coordinates
contained in vectors x and y. X is a matrix where each row is a copy of x, and Y is
a matrix where each column is a copy of y. The grid represented by the
coordinates X and Y has length(y) rows and length(x) columns.
[X,Y] = meshgrid(x) is the same as [X,Y] = meshgrid(x,x), returning square
grid coordinates with grid size length(x)-by-length(x).
surfc(X,Y,Z) creates a three-dimensional surface plot with a contour plot
underneath. A surface plot is a three-dimensional surface that has solid edge
colors and solid face colors. The function plots the values in matrix Z as heights
above a grid in the x-y plane defined by X and Y. The color of the surface varies
according to the heights specified by Z.
contour(Z) creates a contour plot containing the isolines of matrix Z, where Z
contains height values on the x-y plane. MATLAB® automatically selects the
contour lines to display. The column and row indices of Z are the x and y
coordinates in the plane, respectively.
pie(X) draws a pie chart using the data in X. Each slice of the pie chart represents
an element in X.
If sum(X) ≤ 1, then the values in X directly specify the areas of the pie slices. pie
draws only a partial pie if sum(X) < 1.
If sum(X) > 1, then pie normalizes the values by X/sum(X) to determine the area
of each slice of the pie.
If X is of data type categorical, the slices correspond to categories. The area of
each slice is the number of elements in the category divided by the number of
elements in X.
bar(y) creates a bar graph with one bar for each element in y. If y is an m-by-n
matrix, then bar creates m groups of n bars.
55
CODE:
56
Output
57
58
CONCLUSION:
We were able to produce basic 2D and 3D plots for parametric space curve,
polygons with vertices, 3D contour lines and pie and bar charts.
59
List of contributors
Dr Rinki Gupta
60