You are on page 1of 2

Introducere in MATLAB

matlab\general - General purpose commands.


matlab\ops - Operators and special characters.
matlab\lang - Programming language constructs.
matlab\elmat - Elementary matrices and matrix manipulation.
matlab\elfun - Elementary math functions.
matlab\specfun - Specialized math functions.
matlab\matfun - Matrix functions - numerical linear algebra.
matlab\datafun - Data analysis and Fourier transforms.
matlab\polyfun - Interpolation and polynomials.
matlab\funfun - Function functions and ODE solvers.
matlab\sparfun - Sparse matrices.
matlab\graph2d - Two dimensional graphs.
matlab\graph3d - Three dimensional graphs.
matlab\specgraph - Specialized graphs.
matlab\graphics - Handle Graphics.
matlab\uitools - Graphical user interface tools.
matlab\strfun - Character strings.
matlab\iofun - File input/output.
matlab\timefun - Time and dates.
matlab\datatypes - Data types and structures.
matlab\demos - Examples and demonstrations.

1. Instruciuni i funcii de control:


operatori logici;
if, for, while;
help, what, whos, which
disp, clear, pack;
2. Calcul numeric n MATLAB:
+,-,,*,.,^ ;
Generarea vectorilor (cu pas liniar, log);
Generarea matricilor: ones, zeros, eye, rand, isempty;
Generarea unei retele: mesh, meshgrid
3. Funcii matematice uzuale:
Ceil, fix, floor, round, rem, rat, rats, sign, gcd, lcn;
Numere complexe: abs, angle, unwrap, real, imag, conj;
Ridicarea la putere (^), exp, log, log2, log10, pow2, sqrt;
sin, cos, tan, cot, sec, csc, asin, atan sinh, etc.
4. Matrici speciale: compan, diag, hddamarg, hankel, hilb, invhilb, vander
5. Calcule cu matrici:
reshape, tril, triu;
det, inv, rank,trace, norm, eig, svd;
factorizarea lu si qr;
6. Prelucrarea datelor i calcule statistice: max, min, mean, sum, cumsum, prod,
cumprod, sortstd, hist
7. Minimizarea funciilor: fmin, fminbnd, fmins, fzero
8. Calcule numerice cu polinoame: polyval, conv, polyder, roots, poly
9. Interpolarea i aproximarea datelor: table1, table2, spline, interpft, polyfit, etc.
10. Integrarea i derivarea numeric: quad, quad8, trapz, diff, ode23, ode45 etc.
11. Funcii speciale: besselj, bessely, beta, erf etc.
12. Grafic n MATLAB: plot, mesh, title, disp, xlabel, etc.

You might also like