FreeMat: A Free Alternative to MATLAB

FreeMat is an open source numerical computing environment and programming language that is similar to MATLAB and GNU Octave

Dilin Anand



Available under the GPL license, FreeMat is a free environment that has been designed for “rapid engineering and scientific prototyping.” It is similar to commercial tools like Matrix Laboratory (MATLAB) from Mathworks and Interactive Data Language (IDL) from Research Systems Inc.



Fig. 1: Creating combination functions for FreeMat 



Fig. 2: Creating permutation functions for FreeMat

It also features codeless interface to external C, C++ and Fortran code, parallel-distributed algorithm development (via MPI), and some extended volume and 3D visualisation capabilities.


Tutorial to make a function

Here is a short tutorial to create combination and permutation functions for FreeMat, from the FreeMat project home page at code.google.com.

In order to create functions, you can use Notepad (Windows) or vi or gedit (Linux). FreeMat also comes with a built-in editor for this purpose (see fig 1).


To open the FreeMat editor, first run FreeMat and then, from the command line, type in the word ‘edit’ (without the quotes).


In FreeMat, a function is a script that starts with  word ‘function’ and uses the following syntax:


function return_value = 

function(parameter1, 
parameter2,...,parameterN)


When the editor window opens up after typing ‘edit,’ enter the following combination function:


function return_value=comb(n,r)

return_value=gamma(n+1)/(gamma
(n-r+1)*gamma(r+1));



Fig. 3: FreeMat in Windows


To make it a function that FreeMat can use, store the file in a folder that is part of the FreeMat path. To check the path, use the path tool. Select Tools→Path Tool and check that the directory where the function will be stored is part of the path.


To save the function, either select File→ Save or click ‘Save’ icon. When you save the file, put a ‘.m’ extension on it. This lets FreeMat know that it is a usable script.




Fig. 4: FreeMat running in Ubuntu


The permutation function is similar to the combination function. And it is even simpler. The code for it is as follows:


function return_value=perm(n,r)

return_value=gamma(n+1)/gamma(n-r+1);

Just as we did earlier, save the file to a directory within the working path.



Test your functions
Let us do a couple of simple tests on your new functions:

--> comb(7,3)

ans =
35
--> perm(7,3)
ans =
210

If you get an error

The most common errors when trying to use functions is:

“Error: Undefined function or variable”


This means that FreeMat cannot find the function. Double-check that you typed the function name correctly. Also check that the directory where the files are stored is in the path set by the path tool (Tools→Path Tool).


When you save the function, you need to give the file the same name as the function (except with ‘.m’ appended). The file name must match what you type to call the function exactly and is case-sensitive too; i.e., Comb(3,7) != comb(3,7). Check your naming conventions if function files are there but still things aren’t working.


Software available on DVD

This tool is available on this month’s DVD, for both Windows and Mac PCs.

No comments:

Post a Comment

కరోనా కోవిడ్ -19 గురించి ఏ వికీపీడియా మీకు చెప్పలేము?

కరోనా కోవిడ్ -19 గురించి ఏ వికీపీడియా మీకు చెప్పలేము? మిమ్మల్ని మీరు రక్షించుకోండి  Your మీ చేతులను తరచుగా కడగాలి Eyes మీ కళ్ళు, న...