ob-matlab.el 1.3 KB

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