org-babel-matlab.el 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. ;;; org-babel-matlab.el --- org-babel support for matlab evaluation
  2. ;; Copyright (C) Dan Davison
  3. ;; Author: Dan Davison
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 0.01
  7. ;;; License:
  8. ;; This program 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, or (at your option)
  11. ;; any later version.
  12. ;;
  13. ;; This program is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;;
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs; see the file COPYING. If not, write to the
  20. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21. ;; Boston, MA 02110-1301, USA.
  22. ;;; Commentary:
  23. ;; Functions that are common to org-babel support for matlab and
  24. ;; octave are in org-babel-octave.el
  25. ;;; Requirements:
  26. ;; Matlab
  27. ;; matlab.el required for interactive emacs sessions and matlab-mode
  28. ;; major mode for source code editing buffer
  29. ;; http://matlab-emacs.sourceforge.net/
  30. ;;; Code:
  31. (require 'matlab)
  32. (require 'org-babel-octave)
  33. (org-babel-add-interpreter "matlab")
  34. (add-to-list 'org-babel-tangle-langs '("matlab" "m" "#!/usr/bin/env matlab"))
  35. (defvar org-babel-matlab-shell-command "matlab -nosplash"
  36. "Shell command to use to run matlab as an external process.")
  37. (defun org-babel-execute:matlab (body params)
  38. "Execute a block of matlab code with org-babel."
  39. (org-babel-execute:octave body params 'matlab))
  40. (defun org-babel-prep-session:matlab (session params)
  41. (org-babel-prep-session:octave session params 'matlab))
  42. (defun org-babel-matlab-initiate-session (&optional session params)
  43. "Create matlab inferior process buffer.
  44. If there is not a current inferior-process-buffer in SESSION
  45. then create. Return the initialized session."
  46. (org-babel-octave-initiate-session session params 'matlab))
  47. (provide 'org-babel-matlab)
  48. ;;; org-babel-matlab.el ends here