Difference between revisions of "Scilab"

From Script | Spoken-Tutorial
Jump to: navigation, search
(21 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Spoken Tutorial Banner}}
+
       
           
+
'''Scilab''' (http://scilab.org, http://scilab.in) is an open source scientific software package for numerical computations.  It has an extremely reliable and efficiently coded numerical library.  It is also a high productivity tool: Through its interpreted language, one can quickly develop the code required to solve problems.  Typically, if it takes ten lines of C code for some calculation, Scilab would require only one for the same purpose.   
Scilab (http://scilab.org, http://scilab.in, http://scilab.cn) is an open source scientific software package for numerical computations.  It has an extremely reliable and efficiently coded numerical library.  It is also a high productivity tool: Through its interpreted language, one can quickly develop the code required to solve problems.  Typically, if it takes ten lines of C code for some calculation, Scilab would require only one for the same purpose.   
+
  
 
Scilab runs on all popular operating systems.  Since 1994, it has been distributed freely along with the source code via the Internet.  It is useful for students at school, college and <span class="plainlinks">[http://www.netlook.com.br/ <span style="color:black;font-weight:normal; text-decoration:none!important; background:none!important; text-decoration:none;">roupas da moda</span>] research level.  It is also useful for researchers and professionals.
 
Scilab runs on all popular operating systems.  Since 1994, it has been distributed freely along with the source code via the Internet.  It is useful for students at school, college and <span class="plainlinks">[http://www.netlook.com.br/ <span style="color:black;font-weight:normal; text-decoration:none!important; background:none!important; text-decoration:none;">roupas da moda</span>] research level.  It is also useful for researchers and professionals.
  
IIT Bombay is leading the effort to popularise Scilab in India.  This is part of the Free and Open source Software for Science and Engineering Education (FOSSEE) project, supported by the National Mission on Education through ICT of MHRD (http://spoken-tutorial.org/NMEICT-Intro).
+
IIT Bombay is leading the effort to popularise Scilab in India.  This is part of the Free and Open source Software for Science and Engineering Education (FOSSEE) project, supported by the National Mission on Education through ICT of MHRD.
  
 
IIT Bombay is using Spoken Tutorials (http://spoken-tutorial.org) to create learning material for FOSS.  This is the main page for the organisation of the scripts required for Scilab spoken tutorials.  We invite the Scilab user community to participate in this activity.
 
IIT Bombay is using Spoken Tutorials (http://spoken-tutorial.org) to create learning material for FOSS.  This is the main page for the organisation of the scripts required for Scilab spoken tutorials.  We invite the Scilab user community to participate in this activity.
  
The Spoken Tutorial Effort for Scilab is being contributed by Shalini Shrivastava, Rupak Rokade, Anuradha Amruthkar, Manas Ranjan Das, Mukul Kulkarni, Shamika Mohanan, Lavitha Pereira from IIT Bombay
+
 
 +
 
 +
<blockquote style="background-color: lemonchiffon; border: solid thin grey;">
 +
The Spoken Tutorial Effort for Scilab is being contributed by Shalini Shrivastava, Rupak Rokade, Anuradha Amruthkar, Manas Ranjan Das, Mukul Kulkarni, Shamika Mohanan, Lavitha Pereira from IIT Bombay.
 +
 
 +
</blockquote>
 
__TOC__
 
__TOC__
  
Line 21: Line 25:
 
fundamentals and the most commonly used Scilab functionality- Matrix operations and Plotting.  
 
fundamentals and the most commonly used Scilab functionality- Matrix operations and Plotting.  
 
# ''' Why Scilab'''
 
# ''' Why Scilab'''
 +
#*Capabilities of the Scilab package
 +
#* Benefits of shifting to Scilab.
 
#  '''Installing'''   
 
#  '''Installing'''   
 
#* Show where to download from and how to decide which version to choose  
 
#* Show where to download from and how to decide which version to choose  
Line 36: Line 42:
 
#* help,clc
 
#* help,clc
 
#'''Vector Operations'''  
 
#'''Vector Operations'''  
#* Define vector
+
#*Define vector
# '''Matrix Operations'''
+
#*Calculate length of a vector.
#* Square matrices
+
#*Perform mathematical operations on Vectors such as addition,subtraction and multiplication.
#* det(Q), diag(Q)
+
#*Define a matrix.
#* Matrix generation: zeros(3,4), ones(2,5), eye(4,4), diag([1 2 3]), rand(2,3).
+
#*Calculate size of a matrix.
#* Ranges: 1:4, 2:2:8, linspace(1, 9, 5) (linspace is to be explained in Plotting 2D graphs tutorial)
+
#*Perform mathematical operations on Matrices such as addition, subtraction and multiplication.
#* Elementary row operations
+
#'''Matrix Operations'''  
#* Solving equations
+
#*Access the elements of Matrix
# '''Scripts and Functions'''  
+
#*Determine the determinant, inverse and eigen values of a matrix.
#* Explain that one often repeats a set of commands- in which case it is helpful to save that set of commands for future or repeated use. The commands can be saved as scripts or functions.
+
#*Define special matrices.
#* Change directory to the desktop. Open the scilab editor and type the commands (each on a new line)
+
#*Perform elementary row operations.
#* Save the above file to the desktop. Then open the same file using a regular text editor such as notepad to show that it is indeed a text file. Now load the file into scilab using the scilab editor's execute menu option.
+
#*Solve the system of linear equations.
#* Change the value of a to 5 in the editor, save and close it. Now execute the script directly from the scilab interpreter using exec.
+
#* Functions: Show the syntax of functions, explain the function keyword, input arguments and the structure of output arguments when there is more than one argument.  
+
#* Show the following function in the editor: .  
+
#* Inline functions.  
+
#* .sce versus .sci: These are just conventions.
+
 
#''' Conditional Branching'''  
 
#''' Conditional Branching'''  
#* Explain booleans
+
#*'if' and 'then' with the example  
#* First explain 'if' and 'then' with the example
+
#*use of the 'else' keyword  
#* Now explain the use of the 'else' keyword
+
#*use of the 'elseif' keyword  
#* Now explain the use of the 'elseif' keyword
+
#*example for select
#* Say that if there are several branches, it may be clearer to use the 'select' keyword.
+
#* Give example for select
+
#* Branching can be based on satisfaction of combination of multiple conditions as well   
+
 
#''' Iteration'''  
 
#''' Iteration'''  
#* Explain syntax of 'for' statement- tell that the variable iterates over a list/vector/matrix  
+
#* Explain syntax of 'for' statement- tell that the variable iterates over a list/vector/matrix (or an expression that evaluates to any of these).
#* Break condition.
+
#* Give example: for i = 1:5, disp (i), end
#* continue condition.  
+
#* Then explain break condition. Use example: for i = 1:10, disp(i), if (i==5), break, end, end
#* while condition.  
+
#* Then explain continue condition. Use example: for i = 1:10, if (i<=5) then continue, else disp(i), end, end
#* break, continue condition with example in while loop.
+
#* Explain while condition.
 +
#* Give example: i = 0; while(i <=5), i = i + 1; d
 +
# '''Scripts and Functions'''
 +
#*Introduction to the file formats in Scilab.
 +
#*SCRIPT files.
 +
#*sce versus .sci
 +
#*Inline functions.  
 
# ''' Plotting 2D graphs'''  
 
# ''' Plotting 2D graphs'''  
 
#* About linspace: linspace is a linearly spaced vector.
 
#* 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)
 
#* Plot a simple graph: x=linspace(12,34,10), y=linspace(-.1,2,10), plot(x,y)
 
#* plot2d  
 
#* plot2d  
#* Using clf() clear the graphic window.  
+
#* Use of "clf()".  
 
#* Configure the title for the plot
 
#* Configure the title for the plot
 
#* Configure a legend  
 
#* Configure a legend  
 
#* Divide a graphic window into a matrix of sub-windows using subplot(mnp)
 
#* Divide a graphic window into a matrix of sub-windows using subplot(mnp)
 
#''' Xcos introduction'''
 
#''' Xcos introduction'''
 +
#*What is XCOS.
 +
#*What is palette.
 +
#*To collect the blocks from the palette and connect them to construct the block diagram.
 +
#*Set the parameters of different blocks.
 +
#*To setup the simulation parameters.
 +
#*Simulate the constructed block diagram.
  
 
==Advanced Level Scilab==
 
==Advanced Level Scilab==
Line 88: Line 98:
 
#* save() and load()
 
#* save() and load()
 
#* Used to quit scilab midway through calculation and continue at later stage
 
#* Used to quit scilab midway through calculation and continue at later stage
# Numerical methods- Integration
+
# '''Numerical methods- Integration'''
# Numerical methods- Solving Non- linear Equations
+
#* Develop Scilab code for different Composite Numerical Integration algorithms
# Numerical methods- Gauss Elimination Method and Gauss Jordan Method
+
#* Divide the integral into equal intervals
# Numerical methods-  Iterative Methods
+
#* Apply the algorithm to each interval
# Numerical methods-  Interpolation
+
#* Calculate the composite value of the integral
# Numerical methods- ODE- Euler methods
+
# '''Numerical methods- Solving Non- linear Equations'''
# Numerical methods- ODE- Applications
+
#*Learn how to solve nonlinear equations using numerical methods
#''' Optimization Using Karmarkar Functions'''
+
#*Learn Bisection method
 +
#*Learn Secant method
 +
#*Learn how to develop Scilab code for solving nonlinear equations
 +
# '''Numerical methods- Gaussian Methods'''
 +
#* Explain Gauss Elimination method algorithm
 +
#* Explain code for Gauss Elimination method and solve an example using this code
 +
#* Explain Gauss Jordan method algorithm
 +
#* Explain code for Gauss Jordan method and solve an example using this code
 +
# '''Numerical methods-  Iterative Methods'''
 +
#*Solve system of linear equations using iterative methods
 +
#*Use Jacobi and Gauss Seidel iterative methods
 +
#*Learn how to iterate until we converge at the solution
 +
#*Learn how Gauss Seidel method is faster than Jacobi method
 +
#*Develop Scilab code for these two methods to solve linear equations
 +
#'''Numerical methods-  Interpolation'''
 +
#*Develop Scilab code for different Numerical Interpolation algorithms
 +
#*Calculate new value of function from given data points
 +
# '''Numerical methods- ODE- Euler methods'''
 +
#*Solve ODEs using Euler and Modified Euler methods
 +
#*Develop Scilab code to solve ODEs
 +
# '''Numerical methods- ODE- Applications'''
 +
#*Use Scilab ode function
 +
#*Solve typical examples of ODEs
 +
#*Plot the solution
 +
#*examples Motion of simple pendulum Van der Pol equation
 +
#*Lorenz system
 +
# ''' Optimization Using Karmarkar Functions'''
 
#* About Optimization
 
#* About Optimization
 
#* Use of Scilab function Karmarkar in Optimization
 
#* Use of Scilab function Karmarkar in Optimization
# Optimization of Non-linear Functions
+
#'''Digital Signal Processing'''
# Digital Signal Processing
+
#* Plotting continuous and discrete sine wave.
# Filter Design-  Windowing Techniques
+
#* Plotting step function.
# Filter Design- Window Based FIR Filter
+
#* Plotting ramp function.
# Filter Design-  IIR Digital Filter
+
# '''Control systems'''
# Filter Design- Applying Digital Filter
+
#*Define a continuous time system: second and higher order
# Control systems
+
#*Response plot for step input
# Discrete systems
+
#*Response plot for sine input
 +
#*Bode plot
 +
#*Study numer and denom Scilab functions
 +
#*Plot poles and zeros of function
 +
# '''Discrete systems'''
 +
#*Define discrete time system variable z
 +
#*Define first order discrete time system
 +
#*Explain ones, flts, dscr, ss2tf functions
 
#  '''Calling User Defined Functions in XCOS'''
 
#  '''Calling User Defined Functions in XCOS'''
 
#* Write a squaring function
 
#* Write a squaring function

Revision as of 07:25, 27 March 2018

Scilab (http://scilab.org, http://scilab.in) is an open source scientific software package for numerical computations. It has an extremely reliable and efficiently coded numerical library. It is also a high productivity tool: Through its interpreted language, one can quickly develop the code required to solve problems. Typically, if it takes ten lines of C code for some calculation, Scilab would require only one for the same purpose.

Scilab runs on all popular operating systems. Since 1994, it has been distributed freely along with the source code via the Internet. It is useful for students at school, college and roupas da moda research level. It is also useful for researchers and professionals.

IIT Bombay is leading the effort to popularise Scilab in India. This is part of the Free and Open source Software for Science and Engineering Education (FOSSEE) project, supported by the National Mission on Education through ICT of MHRD.

IIT Bombay is using Spoken Tutorials (http://spoken-tutorial.org) to create learning material for FOSS. This is the main page for the organisation of the scripts required for Scilab spoken tutorials. We invite the Scilab user community to participate in this activity.


The Spoken Tutorial Effort for Scilab is being contributed by Shalini Shrivastava, Rupak Rokade, Anuradha Amruthkar, Manas Ranjan Das, Mukul Kulkarni, Shamika Mohanan, Lavitha Pereira from IIT Bombay.

Note: Each numbered topic corresponds to a single spoken tutorial. Each bulleted point corresponds to a command or topic that must be covered organic nuts in the given spoken tutorial.


General Information

This topic will include all functionality in Scilab that iphone photography is not domain specific- functionality that is required across several domains.

Basic Level Introduction to Scilab

This level will include a set of tutorials that are required to be known in order to qualify as "Scilab Literate". The tutorials here will teach programming weight loss pills fundamentals and the most commonly used Scilab functionality- Matrix operations and Plotting.

  1. Why Scilab
    • Capabilities of the Scilab package
    • Benefits of shifting to Scilab.
  2. Installing
    • Show where to download from and how to decide which version to choose
    • Windows installation
    • Linux installation (using package manager- show only Debian/Ubuntu as example (sudo apt-get install scilab) as well as generic binary)
    • Mac
    • Compilation from source can come as a part of a more advanced tutorial
  3. Getting Started
    • Expressions: Show mathematical expressions with numbers
    • Variables
    • Diary command
    • Define symbolic constants.
    • Basic functions
    • suppressing output(;)
    • help,clc
  4. Vector Operations
    • Define vector
    • Calculate length of a vector.
    • Perform mathematical operations on Vectors such as addition,subtraction and multiplication.
    • Define a matrix.
    • Calculate size of a matrix.
    • Perform mathematical operations on Matrices such as addition, subtraction and multiplication.
  5. Matrix Operations
    • Access the elements of Matrix
    • Determine the determinant, inverse and eigen values of a matrix.
    • Define special matrices.
    • Perform elementary row operations.
    • Solve the system of linear equations.
  6. Conditional Branching
    • 'if' and 'then' with the example
    • use of the 'else' keyword
    • use of the 'elseif' keyword
    • example for select
  7. Iteration
    • Explain syntax of 'for' statement- tell that the variable iterates over a list/vector/matrix (or an expression that evaluates to any of these).
    • Give example: for i = 1:5, disp (i), end
    • Then explain break condition. Use example: for i = 1:10, disp(i), if (i==5), break, end, end
    • Then explain continue condition. Use example: for i = 1:10, if (i<=5) then continue, else disp(i), end, end
    • Explain while condition.
    • Give example: i = 0; while(i <=5), i = i + 1; d
  8. Scripts and Functions
    • Introduction to the file formats in Scilab.
    • SCRIPT files.
    • sce versus .sci
    • Inline functions.
  9. 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
    • Use of "clf()".
    • Configure the title for the plot
    • Configure a legend
    • Divide a graphic window into a matrix of sub-windows using subplot(mnp)
  10. Xcos introduction
    • What is XCOS.
    • What is palette.
    • To collect the blocks from the palette and connect them to construct the block diagram.
    • Set the parameters of different blocks.
    • To setup the simulation parameters.
    • Simulate the constructed block diagram.

Advanced Level Scilab

  1. File Handling- Scilab File handling
    • Writing to a file using write()
    • Reading from a file using read()
    • Opening an existing file using mopen()
    • Closing an already opened file using mclose()
  2. File Handling- User Defined Input and Output in Scilab
    • Input Function
    • mprintf()
    • save() and load()
    • Used to quit scilab midway through calculation and continue at later stage
  3. Numerical methods- Integration
    • Develop Scilab code for different Composite Numerical Integration algorithms
    • Divide the integral into equal intervals
    • Apply the algorithm to each interval
    • Calculate the composite value of the integral
  4. Numerical methods- Solving Non- linear Equations
    • Learn how to solve nonlinear equations using numerical methods
    • Learn Bisection method
    • Learn Secant method
    • Learn how to develop Scilab code for solving nonlinear equations
  5. Numerical methods- Gaussian Methods
    • Explain Gauss Elimination method algorithm
    • Explain code for Gauss Elimination method and solve an example using this code
    • Explain Gauss Jordan method algorithm
    • Explain code for Gauss Jordan method and solve an example using this code
  6. Numerical methods- Iterative Methods
    • Solve system of linear equations using iterative methods
    • Use Jacobi and Gauss Seidel iterative methods
    • Learn how to iterate until we converge at the solution
    • Learn how Gauss Seidel method is faster than Jacobi method
    • Develop Scilab code for these two methods to solve linear equations
  7. Numerical methods- Interpolation
    • Develop Scilab code for different Numerical Interpolation algorithms
    • Calculate new value of function from given data points
  8. Numerical methods- ODE- Euler methods
    • Solve ODEs using Euler and Modified Euler methods
    • Develop Scilab code to solve ODEs
  9. Numerical methods- ODE- Applications
    • Use Scilab ode function
    • Solve typical examples of ODEs
    • Plot the solution
    • examples Motion of simple pendulum Van der Pol equation
    • Lorenz system
  10. Optimization Using Karmarkar Functions
    • About Optimization
    • Use of Scilab function Karmarkar in Optimization
  11. Digital Signal Processing
    • Plotting continuous and discrete sine wave.
    • Plotting step function.
    • Plotting ramp function.
  12. Control systems
    • Define a continuous time system: second and higher order
    • Response plot for step input
    • Response plot for sine input
    • Bode plot
    • Study numer and denom Scilab functions
    • Plot poles and zeros of function
  13. Discrete systems
    • Define discrete time system variable z
    • Define first order discrete time system
    • Explain ones, flts, dscr, ss2tf functions
  14. Calling User Defined Functions in XCOS
    • Write a squaring function
    • Use of scifunc block in XCOS
    • Use of MUX block
    • Call functions having multiple inputs and output

Contributors and Content Editors

Lavitha Pereira, Minal, Nancyvarkey, PoojaMoolya, Pratik kamble