Plotting 2D graphs - English
Scilab Tutorials - English 24
-
1Why Scilab
-
2Installing
-
3Getting Started
-
4Vector Operations
-
5Matrix Operations
-
6Scripts and Functions
-
7Conditional Branching
-
8Iteration
-
Plotting 2D graphs
-
10Xcos Introduction
-
11File handling
-
12User Defined Input and Output
-
13Integration
-
14Solving Non linear Equations
-
15Linear equations Gaussian Methods
-
16Linear equations Iterative Methods
-
17Interpolation
-
18ODE Euler methods
-
19ODE Applications
-
20Optimization Using Karmarkar Function
-
21Digital Signal Processing
-
22Control systems
-
23Discrete systems
-
24Calling 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)