0% found this document useful (0 votes)
60 views

Matlab Project Report Viva Set Pk-1

This document summarizes 9 projects completed in MATLAB. It discusses what MATLAB is and its applications, lists 10 common MATLAB commands, solves simultaneous equations using Gauss-Seidel method, evaluates integrals using Simpson's 1/3 rule and derivatives of functions, finds the area under a curve, and solves differential equations. The projects cover basic MATLAB functions, numerical methods, calculus concepts, and solving equations.

Uploaded by

Dr Jagadamba
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
60 views

Matlab Project Report Viva Set Pk-1

This document summarizes 9 projects completed in MATLAB. It discusses what MATLAB is and its applications, lists 10 common MATLAB commands, solves simultaneous equations using Gauss-Seidel method, evaluates integrals using Simpson's 1/3 rule and derivatives of functions, finds the area under a curve, and solves differential equations. The projects cover basic MATLAB functions, numerical methods, calculus concepts, and solving equations.

Uploaded by

Dr Jagadamba
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 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