rdoc/use.rdoc in rb-gsl-1.16.0.2 vs rdoc/use.rdoc in rb-gsl-1.16.0.3.rc1

- old
+ new

@@ -1,20 +1,20 @@ # # = Using Ruby/GSL -# == {}[link:index.html"name="1] Installation +# == Installation # See {here}[link:index.html]. # -# == {}[link:index.html"name="2] Load the library +# == Load the library # Put at the head of your scripts, -# +# # require 'rubygems' # if installed via RubyGems # require 'gsl' # -# == {}[link:index.html"name="3] Naming conventions, C Structs and Ruby Classes +# == Naming conventions, C Structs and Ruby Classes # -# Most of the GSL data types, functions or constants are named as <tt>gsl_xxx</tt> or <tt>GSL_XXX</tt>. -# In Ruby/GSL, the prefix <tt>gsl_</tt> is replaced by the module identifier <tt>GSL::</tt>, +# Most of the GSL data types, functions or constants are named as <tt>gsl_xxx</tt> or <tt>GSL_XXX</tt>. +# In Ruby/GSL, the prefix <tt>gsl_</tt> is replaced by the module identifier <tt>GSL::</tt>, # where <tt>GSL</tt> is the top level module of Ruby/GSL, # and the Ruby classes are defined for each of the GSL C structs under the <tt>GSL</tt> module. # According to the Ruby manner, the name of each class begins with a capital. For example, # # * Struct <tt>gsl_vector</tt> ---> Ruby class <tt>GSL::Vector</tt> @@ -30,44 +30,44 @@ # * Singleton method <tt>GSL::Linalg::LU_decomp</tt> # * Submodule <tt>GSL::Linalg::LU</tt> # * Singleton method <tt>GSL::Linalg::LU.decomp</tt> # * Method <tt>GSL::Matrix#LU_decomp</tt> # -# == {}[link:index.html"name="4] Examples +# == Examples # See the directories "examples/" and "tests/". # # Some of the examples use the <tt>graph</tt> utility to show the results. The <tt>graph</tt> -# utility is included in the {GNU plotutils}[http://www.gnu.org/software/plotutils/plotutils.html"target="_top] package. Windows-cygwin binaries of <tt>GNU plotutils</tt> and -# related packages are available from -# {here}[http://rustam.uwp.edu/support"target="_top]. +# utility is included in the {GNU plotutils}[https://gnu.org/software/plotutils/plotutils.html] package. Windows-cygwin binaries of <tt>GNU plotutils</tt> and +# related packages are available from +# {here}[http://gnuwin32.sourceforge.net/packages/plotutils.htm]. # -# == {}[link:index.html"name="5] Modules and Classes +# == Modules and Classes # The following is the list of Ruby/GSL modules and classes, <Name> (<Module or Class>) # -# * GSL (Module) -# * Complex (Class) -# * Poly (Class) +# * GSL (Module) +# * Complex (Class) +# * Poly (Class) # * Workspace (Class) # * DividedDifferenceRepresentation (Class) # * Taylor (Class) -# * Sf (Module) +# * Sf (Module) # * Result (Class) # * Block (Class) # * Int (Class) # * Byte (Class) # * Index < Permutation -# * Vector (Class) +# * Vector (Class) # * View < Vector # * Complex (Class) # * View < Vector::Complex -# * Matrix (Class) +# * Matrix (Class) # * View < Matrix (Class) # * Complex (Class) # * View < Matrix::Complex -# * Permutation (Class) -# * Combination (Class) -# * Linalg (Module) +# * Permutation (Class) +# * Combination (Class) +# * Linalg (Module) # * LU (Module) # * QR (Module) # * QRPT (Module) # * LQ (Module) # * LQPT (Module) @@ -88,33 +88,33 @@ # * Workspace (Class) # * Herm (Module) # * Workspace (Class) # * Hermv (Module) # * Workspace (Class) -# * FFT (Module) +# * FFT (Module) # * ComplexWavetable (Class) # * ComplexWorkspace (Class) # * HalfComplexWavetable (Class) # * RealWavetable (Class) -# * RealWorkspace (Class) +# * RealWorkspace (Class) # * Wavelet (Class) # * Wavelet2d < Wavelet # * Function (Class) # * Function_fdf (Class) # * Integration (Module) # * Workspace # * QAWS_Table # * QAWO_Table -# * Rng (Class) +# * Rng (Class) # * QRng (Class) # * Ran (Module) -# * Stats (Module) -# * Histogram (Class) +# * Stats (Module) +# * Histogram (Class) # * Integral < Histogram # * Pdf (Class) # * Histogram2d (Class) -# * N-tuples +# * N-tuples # * SelectFn (Class) # * ValueFn (Class) # * Monte (Module) # * Function (Class) # * Plain (Class) @@ -133,45 +133,45 @@ # * System (Class) # * Solver (Class) # * Interp (Class) # * Accel (Class) # * Spline (Class) -# * Diff (Module) +# * Diff (Module) # * Deriv (Module) -# * Cheb (Class) -# * Sum (Module) +# * Cheb (Class) +# * Sum (Module) # * Levin_u (Class) # * Levin_utrunc (Class) -# * Dht (Class) +# * Dht (Class) # * Root (Module) # * Solver (Class) # * FdfSolver (Class) -# * Min(Module) +# * Min(Module) # * FMinimizer (Class) # * MultiRoot (Module) # * Function (Class) # * FSolver (Class) # * Function_fdf (Class) # * FdfSolver (Class) -# * MultiMin (Module) +# * MultiMin (Module) # * Function (Class) # * FMinimizer (Class) # * Function_fdf (Class) # * FdfMinimizer (Class) -# * Fit (Module) +# * Fit (Module) # * MultiFit (Module) # * Workspace (Class) # * Solver (Class) # * Function_fdf (Class) # * FdfSolver (Class) -# * CONST (Module) +# * CONST (Module) # * MKSA (Module) # * CGSM (Module) # * NUM (Module) # -# {prev}[link:rdoc/intro_rdoc.html] -# {next}[link:rdoc/ehandling_rdoc.html] +# {prev}[link:intro_rdoc.html] +# {next}[link:ehandling_rdoc.html] # -# {Reference index}[link:rdoc/ref_rdoc.html] +# {Reference index}[link:ref_rdoc.html] # {top}[link:index.html] # #