In [1]:
!ls
In [2]:
!ps x|grep python
A notebookba definiált fortran függvényeket a fortran_magic csomag segítségével tudjuk használni
In [3]:
%load_ext fortranmagic
In [4]:
%%fortran
subroutine f1(x, y, z)
real, intent(in) :: x,y
real, intent(out) :: z
z = sin(x+y)
end subroutine f1
In [5]:
f1(3,4)
Out[5]:
In [6]:
?f1
Octave kódot ipython-ból az oct2py csomag segítségével tudunk hívni.
In [7]:
%load_ext oct2py.ipython
In [8]:
%%octave
A=rand(10)
In [9]:
A
In [10]:
x = %octave [1 2; 3 4];
x
Out[10]:
In [9]:
%%octave -f svg
p = [12 -2.5 -8 -0.1 8];
x = 0:0.01:1;
polyout(p, 'x')
plot(x, polyval(p, x));
In [ ]: