Jupyter Scilab Kernel

Interact with Scilab in the Notebook. All commands are interpreted by Scilab. Since this is a MetaKernel, a standard set of magics are available. Help on commands is available using the %help magic or using ? with a command.

In [1]:
t = linspace(0,6*%pi,100);
plot(sin(t))
plot(cos(t), 'r')



01002040608010305070900-11-0.50.5
In [2]:
b = 10*cos(t)+30; plot(b);

01002040608010305070902040302535
In [6]:
a = [1,2,3]
 a  = 

   1.   2.   3.


In [7]:
b = a + 3;

In [8]:
disp(b)

   4.   5.   6.


In [9]:
%lsmagic
Available line magics:
%activity  %cd  %connect_info  %conversation  %dot  %download  %edit  %get  %help  %html  %include  %install  %install_magic  %javascript  %jigsaw  %kernel  %kx  %latex  %load  %ls  %lsmagic  %macro  %magic  %matplotlib  %parallel  %plot  %pmap  %px  %python  %reload_magics  %restart  %run  %scheme  %set  %shell

Available cell magics:
%%activity  %%brain  %%conversation  %%debug  %%dot  %%file  %%help  %%html  %%javascript  %%kx  %%latex  %%macro  %%pipe  %%processing  %%px  %%python  %%scheme  %%shell  %%show  %%time  %%tutor