Class: DefPdf

Inherits:
DefGslModule show all
Defined in:
ext/numo/gsl/pdf/parse_pdf.rb

Instance Attribute Summary

Attributes inherited from ErbPP

#children, #parent

Instance Method Summary collapse

Methods inherited from DefGslModule

#check_func

Methods included from ErbppGsl

FM, dbl, dblp, int, intp, long, read_const, read_enum, read_eval, read_func, read_func_pattern, read_type, str, szt, sztp, tp, uint, ulong, void

Methods inherited from DefModule

#_mod_var, #def_id, #id_list, #init_def, #init_erb, #initialize, #method_code

Methods included from DeclMethod

#def_alias, #def_alloc_func, #def_const, #def_method, #def_module_function, #def_singleton_method, #undef_alloc_func, #undef_method, #undef_singleton_method

Methods inherited from ErbPP

#add_child, #description, #find, #find_tmpl, #get, #init_def, #initialize, #load_erb, #method_missing, #method_missing_alias, #result, #run, #set, #write

Constructor Details

This class inherits a constructor from DefModule

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class ErbPP

Instance Method Details

#define_method(t, **h) ⇒ Object



14
15
16
# File 'ext/numo/gsl/pdf/parse_pdf.rb', line 14

def define_method(t,**h)
  PdfMethod.new(self, t, **h)
end

#lookup(h) ⇒ Object



4
5
6
7
8
9
10
11
12
# File 'ext/numo/gsl/pdf/parse_pdf.rb', line 4

def lookup(h)
  case h
  when FM(name:/_dirichlet_(ln)?pdf$/);       "dirichlet"
  when FM(name:/_multinomial_(ln)?pdf$/);     "multinomial"
  when FM(name:/_discrete_pdf$/);             false
  when FM(name:/_multivariate_gaussian(_log)?_pdf$/); false
  when FM(name:/_pdf$/);                      "mod_func_noloop"
  end
end

#to_method_name(s) ⇒ Object



18
19
20
# File 'ext/numo/gsl/pdf/parse_pdf.rb', line 18

def to_method_name(s)
  s.sub(/^gsl_ran_(\w+[^_])_?pdf$/,'\1')
end