The octave-forge package is the result of The GNU Octave Repositry project,
which is intended to be a central location for custom scripts, functions and
extensions for GNU Octave. contains the source for all the functions plus
build and install scripts.
This is tsa.
Stochastic concepts and maximum entropy methods for time series analysis
The octave-forge package is the result of The GNU Octave Repositry project,
which is intended to be a central location for custom scripts, functions and
extensions for GNU Octave. contains the source for all the functions plus
build and install scripts.
This is xraylib.
Bindings to the Xraylib functions
The octave-forge package is the result of The GNU Octave Repositry project,
which is intended to be a central location for custom scripts, functions and
extensions for GNU Octave. contains the source for all the functions plus
build and install scripts.
This is zenity.
A set of functions for creating simple graphical
user interfaces. It is currently possible to create
calendar windows, text entries, file selection dialogs,
lists, message windows, icons in the notification area,
and windows for large amount of text.
The octave-forge package is the result of The GNU Octave Repositry project,
which is intended to be a central location for custom scripts, functions and
extensions for GNU Octave. contains the source for all the functions plus
build and install scripts.
This is zeromq.
ZeroMQ bindings for GNU Octave.
The octave-forge package is the result of The GNU Octave Repositry project,
which is intended to be a central location for custom scripts, functions and
extensions for GNU Octave. contains the source for all the functions plus
build and install scripts.
This is sparsersb.
Interface to the librsb package implementing the RSB sparse matrix format.
The octave-forge package is the result of The GNU Octave Repositry project,
which is intended to be a central location for custom scripts, functions and
extensions for GNU Octave. contains the source for all the functions plus
build and install scripts.
This is video.
Implements addframe, avifile, aviinfo, and aviread, using ffmpeg.
(and approximately conforms to Matlab interface)
Octave is a high-level language, primarily intended for numerical
computations. It provides a convenient command line interface for
solving linear and nonlinear problems numerically, and for performing
other numerical experiments. It may also be used as a batch-oriented
language.
This port contains ten types of distributions supplementing
those built into R: Inverse Gauss, Kruskal-Wallis,
Kendall's Tau, Friedman's chi squared, Spearman's rho,
maximum F ratio, the Pearson product moment correlation
coefficient, Johnson distributions, normal scores and
generalized hypergeometric distributions. In addition,
two random number generators of George Marsaglia are
included.
The port is supplemented by an R benchmark based upon the
work of Grosjean, Steinhaus, et al.
The AI::DecisionTree module automatically creates so-called "decision trees"
to explain a set of training data. A decision tree is a kind of categorizer
that use a flowchart-like process for categorizing new instances.
A decision tree like this one can be learned from training data, and
then applied to previously unseen data to obtain results that are consistent
with the training data.
This module implements a Genetic Algorithm (GA) in pure Perl. Other Perl
modules that achieve the same thing (perhaps better, perhaps worse) do
exist. Please check CPAN. I mainly wrote this module to satisfy my own
needs, and to learn something about GAs along the way.
I will not go into the details of GAs here, but here are the bare basics.
Plenty of information can be found on the web.
In a GA, a population of individuals compete for survival. Each individual
is designated by a set of genes that define its behaviour. Individuals
that perform better (as defined by the fitness function) have a higher
chance of mating with other individuals. When two individuals mate, they
swap some of their genes, resulting in an individual that has properties
from both of its "parents". Every now and then, a mutation occurs where
some gene randomly changes value, resulting in a different individual. If
all is well defined, after a few generations, the population should
converge on a "good-enough" solution to the problem being tackled.