You are on page 1of 2

MATLAB BASICS

1. Std()
2. Mean()
3. Sym()
4. Double()
5. Script, comment
6. -2^2 = 4
7. e^3 = 10^3 and not exponential
8. Formats long, short, longeng, shorteng, longE, shortE
9. Clear screen clc, clear var , clear all
10. Who & whos
11. X=sym(x) syms x
12. Pretty()
13. Factorial,Sqrt(),nthroot
14. Trigonometric sin, asin, sinh, asinh
15. Complex- abs, angle ,real, imag, conj()
16. Logs exp, 10 base, 2 base
17. We can take log, trig and exp of complex no.s
VECTOR
18. Vectors = basic, take each value, add, sub, mul, div element by element. Dot and cross.
19. Length, min, max, sum, mean of vector.
20. Subset of vector
21. Evenly spaced vectors linspace and x=[0:0.1:1]
22. Joining vector and adding elements to vectors
23. Random no. , random permutation, ones, zeros
24. Sorting
25. Mean, median, variance, standard deviation
26. Symbolic representation of vector
MATRIX
27. Basics, subset of matrix
28. Multiply, div element by element
29. Size, length, no. of elements, min, max
30. Sum, diff
31. Joining matrix
32. Applying mathematical functions to matrix elements
33. Applying mathematical functions to matrix as a whole
34. Identity matrix
35. Transpose, diagonal, upper tri, lower tri
36. Trace, rank, determinant, inverse
37. Norm, eig, poly

Solving row reduced echelon form

38. Roots
39. 4 methods to solve linear eqns
40. Solving any eqn using solve()
41. Defining a function
CALCULUS
42. Differentiation, integration(with and without limits)
43. Limits
44. Plots, 2 plots in the same figure
45. X axis, y axis label. Legend. Grid on/off.
46. Different line(dotted, dashed etc etc)

You might also like