# -*- eval: (orgtbl-mode); -*-


srctable = """
#+ORGTBL: SEND mytable orgtbl-to-generic :skip 1 :skipcols (2 3) :fmt (1 "\t\"%s\" : ") (2 "%s") :lstart "\t" :lend ","
| parameter | numerator | denominator |    value |
|-----------+-----------+-------------+----------|
| a         |       3.0 |         3.0 |  1.00000 |
| b         |      14.0 |         7.0 |  2.00000 |
| c         |      -2.0 |        15.0 | -0.13333 |
#+TBLFM: $4=$2/$3;f5

"""

# With point in above table, "C-u C-c C-c" will 
# update formulae and install as python source-code


pytable = {
    # BEGIN RECEIVE ORGTBL mytable
	"a" : 1.00000
	"b" : 2.00000
	"c" : -0.13333
    # END RECEIVE ORGTBL mytable
        }



