I learnt about
- matrices
- I learnt what the function of comma (,) semicolon (;) space and []
- Also I learnt how to make commands of addition, subtraction, multiplication, division, exponentiation in matrices
- Also i learnt the function of other commands such as " min(), max(), prob(), sum(), size(), diag()" and so on
- Also I studied about M-File and significant of commands like "clc & clear"
- Also I knew some important commands like:
- linspace
- "linspace(minimum number, maximum number, number of points in between)"
- randint
- "randint(number of rows,number of columns,[minimum number,maximum number])"
- input "input('')"
- In input we should know about string and character
- string=a character or word
- character=a number or group of numbers
- In order to change from string to character or from chatracter to string "num2str & str2num"
- On this week also I had started learning about 2D Plotting in martices
- Two things we should know when we cross the 2D plotting
- Dependent Variable = variable dendening on other value
- Independent Variable = its value doesn't on other values
- example
clc
clear
X=0:0.1:10
Y=sin(x)
polt(X,Y)
- In this examples
X is the Independent Variable
Y is the Dependent Variable