[Pkg-octave-commit] [octave-financial] branch master updated (a5498ae -> 9a5fd1c)

Sébastien Villemot sebastien at debian.org
Thu Feb 4 13:09:05 UTC 2016


This is an automated email from the git hooks/post-receive script.

sebastien pushed a change to branch master
in repository octave-financial.

      from  a5498ae   Add /debian/.debhelper/ to the list of exclusions for Git
      adds  606dfae   Imported Upstream version 0.5.0
       new  9f8d565   Merge tag 'upstream/0.5.0'
       new  3e08b17   d/copyright: reflect upstream changes.
       new  d383fe1   d/control: update package description.
       new  c200721   Bump Standards-Version to 3.9.7, no changes needed.
       new  9a5fd1c   Changelog entry for 0.5.0-1.

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 DESCRIPTION                 |  13 +-
 INDEX                       |  31 ++-
 NEWS                        |  66 +++++-
 debian/changelog            |  13 ++
 debian/control              |  11 +-
 debian/copyright            |  21 +-
 inst/@diffusion/diffusion.m |  84 ++++++++
 inst/@diffusion/display.m   |  38 ++++
 inst/@diffusion/subsasgn.m  |  47 +++++
 inst/@diffusion/subsref.m   |  43 ++++
 inst/@drift/display.m       |  38 ++++
 inst/@drift/drift.m         |  88 ++++++++
 inst/@drift/subsasgn.m      |  47 +++++
 inst/@drift/subsref.m       |  43 ++++
 inst/@sde/display.m         |  43 ++++
 inst/@sde/sde.m             | 170 +++++++++++++++
 inst/@sde/simByEuler.m      | 447 ++++++++++++++++++++++++++++++++++++++++
 inst/@sde/simulate.m        |  83 ++++++++
 inst/@sde/subsasgn.m        |  77 +++++++
 inst/@sde/subsref.m         |  35 ++++
 inst/binprice.m             | 150 ++++++++++++++
 inst/blkimpv.m              |  73 +++++++
 inst/blkprice.m             |  59 ++++++
 inst/blsdelta.m             |  72 +++++++
 inst/blsgamma.m             |  66 ++++++
 inst/blsimpv.m              | 170 +++++++++++++++
 inst/blslambda.m            |  85 ++++++++
 inst/blsprice.m             |  81 ++++++++
 inst/blsrho.m               |  74 +++++++
 inst/blstheta.m             |  82 ++++++++
 inst/blsvega.m              |  66 ++++++
 inst/bm.m                   |  47 +++++
 inst/bolling.m              |  19 +-
 inst/busdate.m              |   8 +-
 inst/busdays.m              |   4 +-
 inst/cev.m                  |  49 +++++
 inst/cfconv.m               |   4 +-
 inst/cfdur.m                |   2 +-
 inst/cir.m                  |  64 ++++++
 inst/corr2cov.m             |   6 +-
 inst/cov2corr.m             |   6 +-
 inst/datesplit.m            | 492 --------------------------------------------
 inst/day.m                  |  22 +-
 inst/fetch.m                | 298 +++++++++++++--------------
 inst/gbm.m                  |  58 ++++++
 inst/google.m               |  88 ++++----
 inst/heston.m               |  81 ++++++++
 inst/holidays.m             | 169 +++++++++++----
 inst/hour.m                 |  21 +-
 inst/hwv.m                  |  49 +++++
 inst/isbusday.m             |   4 +-
 inst/macd.m                 |  87 ++++++++
 inst/minute.m               |  21 +-
 inst/month.m                |  27 ++-
 inst/opprofit.m             |  65 ++++++
 inst/private/blscheck.m     |  64 ++++++
 inst/private/fetch_google.m | 206 ++++++++++---------
 inst/private/fetch_yahoo.m  | 198 +++++++++---------
 inst/private/sdenvars.m     |  49 +++++
 inst/rate.m                 |   2 +-
 inst/renko.m                | 124 +++++++++++
 inst/sdeddo.m               |  57 +++++
 inst/sdeld.m                |  49 +++++
 inst/sdemrd.m               |  85 ++++++++
 inst/second.m               |  21 +-
 inst/weeknum.m              | 126 ++++++++++++
 inst/yahoo.m                |  88 ++++----
 inst/year.m                 |  35 +++-
 68 files changed, 4159 insertions(+), 1052 deletions(-)
 create mode 100644 inst/@diffusion/diffusion.m
 create mode 100644 inst/@diffusion/display.m
 create mode 100644 inst/@diffusion/subsasgn.m
 create mode 100644 inst/@diffusion/subsref.m
 create mode 100644 inst/@drift/display.m
 create mode 100644 inst/@drift/drift.m
 create mode 100644 inst/@drift/subsasgn.m
 create mode 100644 inst/@drift/subsref.m
 create mode 100644 inst/@sde/display.m
 create mode 100644 inst/@sde/sde.m
 create mode 100644 inst/@sde/simByEuler.m
 create mode 100644 inst/@sde/simulate.m
 create mode 100644 inst/@sde/subsasgn.m
 create mode 100644 inst/@sde/subsref.m
 create mode 100644 inst/binprice.m
 create mode 100644 inst/blkimpv.m
 create mode 100644 inst/blkprice.m
 create mode 100644 inst/blsdelta.m
 create mode 100644 inst/blsgamma.m
 create mode 100644 inst/blsimpv.m
 create mode 100644 inst/blslambda.m
 create mode 100644 inst/blsprice.m
 create mode 100644 inst/blsrho.m
 create mode 100644 inst/blstheta.m
 create mode 100644 inst/blsvega.m
 create mode 100644 inst/bm.m
 create mode 100644 inst/cev.m
 create mode 100644 inst/cir.m
 delete mode 100644 inst/datesplit.m
 create mode 100644 inst/gbm.m
 create mode 100644 inst/heston.m
 create mode 100644 inst/hwv.m
 create mode 100644 inst/macd.m
 create mode 100644 inst/opprofit.m
 create mode 100644 inst/private/blscheck.m
 create mode 100644 inst/private/sdenvars.m
 create mode 100644 inst/renko.m
 create mode 100644 inst/sdeddo.m
 create mode 100644 inst/sdeld.m
 create mode 100644 inst/sdemrd.m
 create mode 100644 inst/weeknum.m

-- 
Alioth's /home/groups/pkg-octave/bin/git-commit-notice on /srv/git.debian.org/git/pkg-octave/octave-financial.git



More information about the Pkg-octave-commit mailing list