logo for matrixlab-examples.com
leftimage for matrixlab-examples.com


Recursion in Scilab

In this short article we are going to explain what a recursive function is and how to implement recursion or create recursive functions in a programming language. The language to be used in this example is Scilab.
 


As a general concept, we can say that a recursive function is one that calls itself to solve itself. In other words, a recursive function is solved by nested self-calls, by changing the value of a parameter in every self-call. Through nested self-calls you get new values that are used to calculate the value of the original call. Don’t worry, we’ll see an example.

The process of recursive calls always has to end up in a call that is solved directly, without the need of invoking the function again. This step will always be needed in order to avoid a never ending loop.

A typical example of recursion would be the factorial function. The factorial process is a mathematical function that is solved by multiplying that number times all of the previous natural numbers, so to speak.

For example, the factorial of 4 equals 4 × 3 × 2 × 1. If we look the example of 4 factorial (a factorial is expressed mathematically with an exclamation mark, as in 4!), it can be solved as 4 × 3! In other words, we can calculate the factorial of a number by multiplying that number by the factorial of that number minus 1. In mathematical terms, that is

n! = n × (n-1)!

In the case of the factorial function, we have the basic case that the factorial of 1 equals 1, and it can be used as a final point to the recursive calls.

Now, we are going to carry out the code of the recursive factorial function.


// We start the definition as usual.
function fact = my_factorial(n)

// This is the last case within the recursion.
// We’ll eventually reach this point.
if n == 1
  fact = 1

// This is the general case.
// Notice that we're calling this function and decrementing
// the input parameter
else
  fact = n * my_factorial(n-1)
end

// Now, we just close the function
endfunction


We can call it from the main code, like this:

xdel(winsid()); clear; clc
cd  'use your own path here, or delete this line...';

// load the function into memory
getf('my_factorial.sci')

// compare the built-in function with our own one
n = 8
f1 = factorial(n)
f2 = my_factorial(n)

n = 15
f1 = factorial(n)
f2 = my_factorial(n)


And the answer on screen would be:

n  =  8.
f1  = 40320.
f2  = 40320.

n  =  15.
f1  = 1.308D+12
f2  = 1.308D+12   


As you can see, the recursion doesn’t represent any problem for Scilab and in fact it is a very useful tool for programming appropriate algorithms. At the beginning, this concept can be hard to understand, but it’s an excellent way of solving some problems with some programming languages.

There are some algorithms that are mainly solved through recursion, or at least, that’s a more direct, straightforward or elegant solution. For example the exploration of some data structures, such as tree types, whose solution tends to perform well when recursively reviewed, in order to make sure that all the branches of the tree have been covered.

See the explanation about recursion in Matlab

 From 'Recursion in Scilab' to home

 From 'Recursion in Scilab' to Scilab Examples


Top


footer for matlab page