Presentation is loading. Please wait.

Presentation is loading. Please wait.

Introduction To MATLAB Prof. Muhammad Saeed Mathematical Modeling and Simulation.

Similar presentations


Presentation on theme: "Introduction To MATLAB Prof. Muhammad Saeed Mathematical Modeling and Simulation."— Presentation transcript:

1 Introduction To MATLAB Prof. Muhammad Saeed Mathematical Modeling and Simulation

2 Basic Features MATLAB Windows 1.Command ( << ) 2.Command History 3.Workspace 4.Current Directory 5.Editor 6.Profiler 7.Help Simple Math in Command Window 1.Operators: +, -, *, /, \, ^ 2.Variables: ans, pi, inf, NaN, i, j, realmin, realmax, ……, user-defined 2 Mathematical Modeling and Simulation

3 3.Precision: significant digits and formats a)format short, format short eand format short g b)format long, format long e, format long g c)format hex d)format bank e)format + 4.Complex numbers a)imag(), real(), abs() and angle() Display and Help 1.who, whos, clear, clear a*, clear –regexp, clc, disp, ver, version, diary, commands 2.Comments in MATLAB (%) 3.Ellipses ( … ) and ; at the end of commands 4.Built-in Functions and Help using fx, start and Help 3 Mathematical Modeling and Simulation

4 Arrays and Matrices 1.Initialization: i.Row Matrix: a=[1,2,3,4], [1 2 3 4], [1:1:4] or [1:4] a=1:2:20, b=1:10,(1:1:10), (1:7) ii.Column Matrix: a=[1;2;3;4] iii.3x3 Matrix: d3=[1,2,3;4,5,6;7,8,9], [1 2 3;4 5 6;7,8,9], [1:3;4:6;7:9], [1:exp(1.4567):100], angle=[0:pi/10:pi] iv.sine=sin(angle) v. d=[a b], d=[a b;b a] or d=[a b 0 1 2 3 b], c(:)=1.5 vi. x=(0:0.1:2)*pi, linspace(0,2*pi,21), logspace(0, 3, 5) vii. ones(n, m), ones(n), zeros(n), zeros(n, m), eye(n), eye(n, m), rand(n), rand(n, m), randn(n), randn(n, m), randi(10,5), randperm(n), diag([ ]), diag(a), diag(a, n), diag(a,-n) viii. repmat(pi, 2, 3), reshape(a, 4, 3), reshape(1:10, 2, 5) 4 Mathematical Modeling and Simulation

5 2.Operations: i.a(2), a(2:6), a(3:end), a(12:-1:5), a(3:1:9), a([7 4 6 2]) ii.Transpose : a., [1:5], (0:0.1:1) iii.Conjugate Transpose : a iv.Maths: 3*(a-1), a*2, 3\a, a/3, a+4, a+b, a*b, a.*b, a./b, a^2, a.^2, 2./a 3.Functions: sort(a), sort(a,ascend), sort(a,descend), find(a>7), find(a, k), find(a, k, first), find(a, k, last), max(a), min(a), flipud(a), fliplr(a), rot90(a), rot90(a,2), triu(a). tril(a), repmat(a,1,4),repmat(a, 2, 2), repmat(pi,size(a)), numel(a), length(a), diag(diag(a)), size(a), size(a,1), size(a,2) prod(a), prod(a,1), prod(a,2), ndims(a) 5 Mathematical Modeling and Simulation ….. Arrays and Matrices

6 4.Data Types: int8, uint8……. Int64, uint64, cast(a,int16) ones(n,m,uint32), realmax(type), char, double, float, single, Inf, NaN, realmin(type), intmin, intmax, num2str, int2str, mat2str, str2double, str2num, fprintf(….) sprintf(…..), strmatch(…, str), regexp, regexpi 5.Operators:, =, ==, ~=, &, |, ~, &&, || 6.Control Flow: for - end, while – end, if - end, switch- case-otherwise-end 6 Mathematical Modeling and Simulation ….. Arrays and Matrices

7 77 Mathematical Modeling and Simulation M-File Scripts 1.Specific Functions used in M-Files: echo, disp, input, keyboard, pause, pause(n), waitforbuttonpress 2.All other functions and control statements of MATLAB can be used in script files. 3.Extension is m ( file.m ) 4.M-File directly runs on the command line ( >>) as simple statements do. It is evaluated in MATLAB workspace.

8 88 Mathematical Modeling and Simulation 1.Function name must be identical to M-File name. 2.Function start with function keyword and ends with end keyword 3.1 st line in M-File must be the function declaration 4.The error and warning functions in the M-File are like sprintf 5.Script file called in a function is evaluated in function workspace 6.Subfunctions are called from the 1 st functions body 7.Help for subfunction can be displayed by >>helpwin func/subfunc 8.Functions can have zero input or zero output arguments. 9.Functions can be called with fewer input and output arguments than are specified in the function definition but not with more arguments than specified. M-File Functions

9 99 Mathematical Modeling and Simulation ……….. M-File Functions 10.Function arguments can be determined by two functions: nargin and nargout. 11.The first set of contiguous comment lines after the function declaration are the help text for the function 12.The return statement is not necessary. 13.Script file called in a function is evaluated in function WS 14.Unlimited number of input and output arguments by specifying varargin as the last argument and varargout for output arguments. 15.pcode command compiles the function 16.Functions can be nested. 17. One-Lineinline functions can be defined as in C (by #define) 18.Anonymous functions are defined by handles. 19. Handles of MATLAB functions can also be created

10 10 Mathematical Modeling and Simulation Set Functions 1.isequal(a, b), compares as a whole 2.unique(a), removes duplications 3.ismember(a,b), ismember(a,xyz), compares element by element 4.union(a,b) 5.intersect(a,b) 6.setor(a,b) 7.setdiff(a,b) Base Conversion Functions 1.dec2bin(x), bin2dec(x) 2.dec2hex(x), hex2dec(x) 3.dec2base(x, base), base2dec(x, base)

11 11 Mathematical Modeling and Simulation Basic Matrix Functions 1.rank(a) 2.inv(A) 3.A\y, solves set of linear equations, A is a matrix and y is a vector 4.det(A) 5.eig(A), calculates eigen values 6.trace(A) 10.sp=sparse(A), 11.full(sp)

12 12 Mathematical Modeling and Simulation Data Analysis 1.mean(a), for a 2D matrix each rows s mean will be calculated. 2.mean(a,1), row values are averaged 3.mean(a,2), column values are averaged 4.median(a) 4.std(a), standard deviation 5.var(a), Variance 5.cov(a), covariance 6.corrcoef(a), correlation coefficients 7.diff(a), rows are subtracted 8.min(a) 9.max(a) 10.cumsum(a) 11.cumprod(a)

13 13 Mathematical Modeling and Simulation Two-Dimensional Graphs 1.plot(x,y),title( ………), xlabel(……..), ylabel(……..) 2.plot(x,y,u,v,p,q); grid on; 3.t=[y; z; w]; plot(x,t) 4.hold on, hold off 5.subplot(n,m,i) 6.axis(…………), axis auto, axis tight, axis fill, axis on, axis off, axis normal, etc. 7.axes(position, rect) 8.close, close(handle), close all, clf, clf reset 9.fill(x, y,color) 10.legend(y1, y2) 11.area(x,y), stem(x,y), stairs(x, y), bar(x,y), polar(theta,r), fplot(fn,[a b]), scatter(x,y), ezplot(stringfn, [x1 x2 y1 y2]) 12.hist(y, x)

14 14 Mathematical Modeling and Simulation

15 15 Mathematical Modeling and Simulation Basic Matrix Functions 1.

16 End 16 Mathematical Modeling and Simulation


Download ppt "Introduction To MATLAB Prof. Muhammad Saeed Mathematical Modeling and Simulation."

Similar presentations


Ads by Google