Scientific Computing With Octave
Scientific Computing With Octave
Scientific Computing With Octave
with Octave
Octave, GNUPlot and Other Tools
Dr. Michael Rakijas
Benedict G. Archer
Sept. 18, 1999
Computational Engine
Programmable
Easily Extendible
Graphical Comparison Tool
oct_home
Resulting Plot
clg
t = range;
s = sinc(t);
s2 = s'*s;
mesh(t,t,s2)
pause
clg
c = cos(t);
c2 = c'*c;
mesh(t,t,c2)
pause
contour(c2)
pause
clg
sq = t.^2;
sq2 = sq'*sq;
mesh(t,t,sq2)
pause
clg
mesh(t,t,1-sq2)
pause
S = fft(log(t));
clg
plot(S)
pause
clg
t = 0.1:0.1:100;
polar(t,t.*log(t))
Resulting Plots
Conclusion
Octave is an accessible, easy to use
numerical computation utility that can
span the uses of the high school level to
that of the complex tool needed by
engineers
We've shown how to start from scratch,
assemble the utilities necessary to set up
this powerful tool on your home
computer