ob-matlab.el 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. ;;; ob-matlab.el --- org-babel support for matlab evaluation
  2. ;; Copyright (C) 2010 Free Software Foundation, Inc.
  3. ;; Author: Dan Davison
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 7.4
  7. ;; This file is part of GNU Emacs.
  8. ;; GNU Emacs is free software: you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation, either version 3 of the License, or
  11. ;; (at your option) any later version.
  12. ;; GNU Emacs is distributed in the hope that it will be useful,
  13. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. ;; GNU General Public License for more details.
  16. ;; You should have received a copy of the GNU General Public License
  17. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  18. ;;; Commentary:
  19. ;; Functions that are common to org-babel support for matlab and
  20. ;; octave are in org-babel-octave.el
  21. ;;; Requirements:
  22. ;; Matlab
  23. ;; matlab.el required for interactive emacs sessions and matlab-mode
  24. ;; major mode for source code editing buffer
  25. ;; http://matlab-emacs.sourceforge.net/
  26. ;;; Code:
  27. (require 'ob)
  28. (require 'ob-octave)
  29. ;; see ob-octave for matlab implementation
  30. (provide 'ob-matlab)
  31. ;; arch-tag: 6b234299-c1f7-4eb1-ace8-7b93344065ac
  32. ;;; ob-matlab.el ends here