25
CONTACT US ON- Address- Opp. Phagwara Bus Stand,Above Bella Pizza, Handa City Center,Phagwara [email protected], [email protected] Web site- www.e2matrix.com

Matlab final year project in ludhiana

Embed Size (px)

DESCRIPTION

e2 matrix provides IT consulting services to its customers. e2 matrix provides the flexible practices that enable companies to operate more efficiently and produce more value. We also offer a wide-range of technologies such as- MATLAB NS2 IMAGE PROCESSING .NET SOFTWARE TESTING DATA MINING NEURAL networks HFSS WEKA ANDROID CLOUD computing COMPUTER NETWORKS FUZZY LOGIC ARTIFICIAL INTELLIGENCE LABVIEW EMBEDDED VLSI We are professionals who are driven by the viewpoint of customer satisfaction through Quality and Innovation. e2matrix believe in an open working relationship produces a positive and productive work environment that results in effective and low-cost solutions. We maximize the customer benefits by bringing the most pioneering solutions. Address-Opp. Phagwara Bus Stand, Above Bella Pizza, Handa City Center, Phagwara,punjab email [email protected] [email protected] WEBSITE-www.e2matrix.com CONTACT NUMBER -- 09041262727 07508509730 7508509709

Citation preview

Page 1: Matlab final year project in ludhiana

CONTACT US ON-

Address- Opp. Phagwara Bus Stand,Above Bella Pizza, Handa City Center,Phagwara

[email protected], [email protected]

Web site-www.e2matrix.com

Contact no-07508509730, 09041262727, 7508509709

Page 2: Matlab final year project in ludhiana
Page 3: Matlab final year project in ludhiana
Page 4: Matlab final year project in ludhiana

Command Window

Workspace / Current Directory

Command History

Explore the Matlab Desktop

Page 5: Matlab final year project in ludhiana

Matlab prompt

assign operator

suppress command output

comment operator

Try the same line without the semicolon and comments

Page 6: Matlab final year project in ludhiana
Page 7: Matlab final year project in ludhiana
Page 8: Matlab final year project in ludhiana
Page 9: Matlab final year project in ludhiana
Page 10: Matlab final year project in ludhiana

square brackets to define matrices

semicolon for next row in matrix

Page 11: Matlab final year project in ludhiana

A =

3 2 1

5 1 0

2 1 7

indices of matrix element(s)

Page 12: Matlab final year project in ludhiana

Try the following >> x=0:pi/12:2*pi;>> y=sin(x)

Page 13: Matlab final year project in ludhiana

A =

3 2 1

5 1 0

2 1 7

What’ll happen if you type A(:,:) ?

Page 14: Matlab final year project in ludhiana

A =

3 2 1

5 1 0

2 1 7

B =

1 3 1

4 9 5

2 7 2

Create matrices A and B and try out the the matrix operators in this slide

Enter matrix B into the Matlab workspace

Page 15: Matlab final year project in ludhiana

Matlab Desktop

Press to create new m-file in the matlab editor

Page 16: Matlab final year project in ludhiana

Highlight a few lines of your script by left- clicking and dragging the mouse over the lines. Right-click the highlighted lines and select Evaluate Selection.

Will be slightly different in Linux

Page 17: Matlab final year project in ludhiana
Page 18: Matlab final year project in ludhiana

outputinputfunction name

for statement block

function keyword

help lines for function

Access the comments of your Matlab functions >> help iterate Make sure you save changes to the

m-file before you call the function!

Page 19: Matlab final year project in ludhiana

Functions can have many outputs contained in a matrix

Remember to use the Matlab help command for syntax>> help if

if statement block

Page 20: Matlab final year project in ludhiana

Method is linear>>

i =

4

i =

16

i =

256

While statement block Switch statement block

Without ; to print output

Page 21: Matlab final year project in ludhiana

Click mouse on the left of the line of code to create a breakpoint

local function workspace

exit debug mode

Debug menus

Page 22: Matlab final year project in ludhiana

Investigate the function >> y=A*cos(w*t+phi);for different values of phi (eg: 0, pi/4, pi/3, pi/2), w (eg: 1, 2, 3, 4) and A (eg: 1, 0.5, 2). Use the hold on Matlab command to display your plots in the same figure. Remember to type hold off to go back to normal plotting mode. Try using different plot styles (help plot)

A = amplitudephi = phasew = angular frequency = 2*pi*frequency

Plot style

Page 23: Matlab final year project in ludhiana

Next week …

Page 24: Matlab final year project in ludhiana

Remember to use the Matlab help command if you get stuck

stringcell

error handling

Operating system command

Graphical user interface

Continue in next line

Page 25: Matlab final year project in ludhiana

Figure 1

Figure 2