Plotting 2D graphs - English
Scilab Tutorials - English 24
-
1
Why Scilab -
2
Installing -
3
Getting Started -
4
Vector Operations -
5
Matrix Operations -
6
Scripts and Functions -
7
Conditional Branching -
8
Iteration -
Plotting 2D graphs -
10
Xcos Introduction -
11
File handling -
12
User Defined Input and Output -
13
Integration -
14
Solving Non linear Equations -
15
Linear equations Gaussian Methods -
16
Linear equations Iterative Methods -
17
Interpolation -
18
ODE Euler methods -
19
ODE Applications -
20
Optimization Using Karmarkar Function -
21
Digital Signal Processing -
22
Control systems -
23
Discrete systems -
24
Calling User Defined Functions in XCOS
Outline:
Plotting 2D graphs About linspace: linspace is a linearly spaced vector. Plot a simple graph: x=linspace(12,34,10), y=linspace(-.1,2,10), plot(x,y) plot2d Using clf() clear the graphic window. Configure the title for the plot Configure a legend Divide a graphic window into a matrix of sub-windows using subplot(mnp)