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 jalandhar

Embed Size (px)

DESCRIPTION

E2MATRIX PROVIDE EXPERT GUIDANCE FOR THESIS & PROJECT FOR M.TECH. / PHD / B.TECH. STUDENTS. MTECH THESIS/ IEEE PROJECT GUIDANCE / PHD THESIS. GENUINE THESIS / PROJECT WORK BY THE EXPERT FACULTY/ DEVELOPERS. DOMAINS / TECHNOLOGIES - MATLAB NS2 IMAGE PROCESSING .NET WIRELESS COMMUNICATION DATA MINING NEURAL NETWORKS HFSS / IE3D ANTENNA WEKA ANDROID CLOUD COMPUTING FUZZY LOGIC ARTIFICIAL INTELLIGENCE LABVIEW EMBEDDED VLSI AND MANY MORE. WE PROVIDE- RESEARCH PAPERS OBJECTIVES SYNOPSIS IMPLEMENTATION DOCUMENTATION REPORT WRITING PAPER PUBLICATION FOR MORE INFORMATION contact us - 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 jalandhar

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 jalandhar
Page 3: Matlab final year project in jalandhar
Page 4: Matlab final year project in jalandhar

Command Window

Workspace / Current Directory

Command History

Explore the Matlab Desktop

Page 5: Matlab final year project in jalandhar

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 jalandhar
Page 7: Matlab final year project in jalandhar
Page 8: Matlab final year project in jalandhar
Page 9: Matlab final year project in jalandhar
Page 10: Matlab final year project in jalandhar

square brackets to define matrices

semicolon for next row in matrix

Page 11: Matlab final year project in jalandhar

A =

3 2 1

5 1 0

2 1 7

indices of matrix element(s)

Page 12: Matlab final year project in jalandhar

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

Page 13: Matlab final year project in jalandhar

A =

3 2 1

5 1 0

2 1 7

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

Page 14: Matlab final year project in jalandhar

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 jalandhar

Matlab Desktop

Press to create new m-file in the matlab editor

Page 16: Matlab final year project in jalandhar

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 jalandhar
Page 18: Matlab final year project in jalandhar

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 jalandhar

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 jalandhar

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 jalandhar

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 jalandhar

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 jalandhar

Next week …

Page 24: Matlab final year project in jalandhar

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 jalandhar

Figure 1

Figure 2