Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 5

MATLAB PROJECT REPORT:

Project 1. What is MATLAB? Write its application.

Answer:
Matlab (Matrix Laboratory) is a fourth generation high-level programming language and interactive
environment for numerical computing, visualization and programming. It has numerous built-in command and
math functions that help us in mathematical calculations, generating plots, and performing numerical methods.

The different application areas of application are:

 Signal Processing and communication.


 Image and video processing.
 Control systems.
 Test and measurement.
 Computational biology and
 Many others field of science, technology, mathematical research.
Project 2. Write any ten commands used in MATLAB.

Answer:
Any ten commands used in MATLAB are listed below along with their meanings:

i. clear: clears the commands window.

ii. whos: lists current variables(long display).

iii. disp: displays contents of an array or string.

iv. ezplot: generates a plot of a symbolic expression.

v. syms: creates one or more symbolic variables.

vi. subs: substitutes variables or expressions.

vii. diff: returns the derivative of an expressions.

viii. int: returns the integral of an expression.

ix. limit: returns the limit of an expression.

x. solve: solves symbolic equations.

Project 3. Find the roots of the following simulataneous equations using the gauss-seidel method.
20*x+y-2*z=17….eq1

3*x+20*y-z=-18…eq2

2*x-3*y+20*z=25…eq3

Solution:
Converting into form:

x=(1/20)(17-y+2*z)

y=(1/20)(-18-3*

z=(1/20)(25-2*x+3*y)

1|Page
script:

Conclusion: The value of x is 1.oooo, y is -1.0000 and z is 1.0000.

Project 4. Evaluate the integral of x^4 within the limits-3 to 3 using simpson’s 1/3 rule:

Solution:

2|Page
Project 5. Evaluate the derivative of the functions given below

a). f(x)=(x+2)*(x^2+3)

Solution:

b). f(x)=(x^2+1)^17

Solution:

3|Page
Project 7. Find the area under the curve f(x)=x^3-2*x+5 enclosed between x axis
and the ordinates at x=1 and x=2, i.e. [-4,9].

Solution:

Project 8. Evaluate the integral of :

a). definite integral f(x)=x^2-5 at[0,1]

Solution:

4|Page
b. Indefinite intergral f(x)= x^n and f(x)= sin(n*t)

Solution:

Project 9. Solve given differential equations:

(a) y’=5y (b) y’’-y’=0 and y(0)=-1, y’(0)=-2

Solution:

THE END

5|Page

You might also like