Search Tutorials

The Tutorials in this series are created using Scilab 5.2.0 and 5.2.2 on Ubuntu 14.04 and Mac OS. Mathematical and scientific calculation software, open source substitute for MATLAB, very useful for all science and engineering students, in academics particularly. Read more


About 35 results found.
  1. Instruction Sheet
  2. Installation Sheet
  3. Brochures

Foss : Scilab - English

Outline: What is FOSS? Why FOSS ? About Scilab and its benefits Scilab is reliable Use of Scilab in CNES Use of Scilab for space mission analysis and flight dynamics Industrial applic..

Basic

Foss : Scilab - English

Outline: About Spoken Tutorial Created for self learning Dubbed in all 22 languages Scilab spoken tutorials 25 spoken tutrials on Scilab Side by side learning Spoken tutorial used as ..

Basic

Foss : Scilab - English

Outline: Opensource software problem, no good documentation for FLOSS Solution: Textbook companion project Scilab code for standard textbooks Demo of Textbook companion Download Scilab ..

Basic

Foss : Scilab - English

Outline: Lab migration Demo of Lab migration on FOSSEE Scilab website Download PDF for lab solution Scilab Toolboxes FOSSEE Optimisation toolbox available on atoms website IEEE paper ..

Basic

Foss : Scilab - English

Outline: Installing Show where to download from and how to decide which version to choose (OS and 32/64bit) (www.scilab.org/download) Windows installation (Internet Connection i..

Basic

Foss : Scilab - English

Outline: Getting Started *Expressions: Show mathematical expressions with numbers *Variables *Diary command *Define symbolic constants. *Basic functions *suppressing output(;) *he..

Basic

Foss : Scilab - English

Outline: Vector Operations *Define vector *Calculate length of a vector. *Perform mathematical operations on Vectors such as addition,subtraction and multiplication. *Define a matrix...

Basic

Foss : Scilab - English

Outline: Matrix Operations *Access the elements of Matrix *Determine the determinant, inverse and eigen values of a matrix. *Define special matrices. *Perform elementary row operation..

Basic

Foss : Scilab - English

Outline: Conditional Branching * 'if' and 'then' with the example * use of the 'else' keyword * use of the 'elseif' keyword * example for select

Basic

Foss : Scilab - English

Outline: 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: ..

Basic

Foss : Scilab - English

Outline: Scripts and Functions *Introduction to the file formats in Scilab. *SCRIPT files. *sce versus .sci *Inline functions.

Basic

Foss : Scilab - English

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..

Basic

Foss : Scilab - English

Outline: 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 diļ¬€erent blocks..

Basic

Foss : Scilab - English

Outline: 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 usi..

Advanced

Foss : Scilab - English

Outline: 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.

Advanced

Foss : Scilab - English

Outline: *Develop Scilab code for different Composite *Numerical Integration algorithms *Divide the integral into equal intervals *Apply the algorithm to each interval *Calculate the com..

Advanced

Foss : Scilab - English

Outline: Numerical methods- Solving Non- linear Equations Learn how to solve nonlinear equations using numerical methods Learn Bisection method Learn Secant method Learn h..

Advanced

Foss : Scilab - English

Outline: * Explain Gauss Elimination method algorithm * Explain code for Gauss Elimination method and solve an example using this code * Explain Gauss Jordan method algorithm ..

Advanced

Foss : Scilab - English

Outline: 1. Solve system of linear equations using iterative methods 2. Use Jacobi and Gauss Seidel iterative methods 3. Learn how to iterate until we converge at the solution 4. Learn h..

Advanced

Foss : Scilab - English

Outline: Numerical Interpolation Develop Scilab code for different Numerical Interpolation algorithms Calculate new value of function from given data points

Advanced