MATLAB Basic Practices

MATLAB Basic Practices

MATLAB Basic Practices 1. Basic Operations in MATLAB 1.1 MATLAB Interface 1.2 Common MATLAB Commands 1.3 Numerical, Comparison, and Logical Operations 1.4 M-files 1.5 Live Scripts and Live Editor 1.6 Step Signals and Impulse Signals 2. MATLAB Plotting 2.1 Basic Plotting 2.2 Handle Graphics 2.3 Interactive Plotting some topics 3. Time Domain Analysis of Continuous-Time … Read more

Matlab Algorithm Collection

Matlab Algorithm Collection

1.Gaussian Elimination: function (x,det,flag)=Gauss(A,b), where A is the coefficient matrix of the equations; b is the right-hand side; det is the value of the determinant of the coefficient matrix; x is the solution of the equations. 2.Gaussian-Jordan Elimination: function (x,flag)=Gau_Jor(A,b), where flag=’ok’ indicates successful computation. 3.The syntax for plotting function graphs is: (1).plot——Utilize points to … Read more