ob-matlab.el 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ;;; ob-matlab.el --- Babel support for Matlab -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2010-2022 Free Software Foundation, Inc.
  3. ;; Author: Dan Davison
  4. ;; Keywords: literate programming, reproducible research
  5. ;; URL: 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. ;; https://matlab-emacs.sourceforge.net/
  25. ;;; Code:
  26. (require 'org-macs)
  27. (org-assert-version)
  28. (require 'ob)
  29. (require 'ob-octave)
  30. ;; see ob-octave for matlab implementation
  31. (provide 'ob-matlab)
  32. ;;; ob-matlab.el ends here