Metadata-Version: 1.1
Name: matlab-nbconvert
Version: 0.2.1
Summary: An exporter for matlab-based jupyter notebooks
Home-page: https://github.com/janfreyberg/matlab_nbconvert
Author: Jan Freyberg
Author-email: jan.freyberg@gmail.com
License: MIT
Download-URL: https://github.com/janfreyberg/matlab_nbconvert/tarball/0.2
Description: [![PyPI version](https://badge.fury.io/py/matlab_nbconvert.svg)](https://badge.fury.io/py/matlab_nbconvert)
        
        # matlab_nbconvert
        
        This is an exporter for `nbconvert` that turns matlab-notebooks into neatly formatted matlab (`.m`) files. You need to have `nbconvert` installed.
        
        Usage: type `jupyter nbconvert --to matlab 'notebookname.ipynb'`, inserting your filename as needed.
        
        All cells in the resulting `.m` files are delimited by the matlab sectioning `%%`, which means you can run your code as sections in Matlab like you would in jupyter. All code cells have the heading "Cell [X]", where X is the output number present in your notebook.
        
        You can then turn these `.m` files into _Matlab Live Scripts_, which is Mathwork's version of a notebook. In future releases, I may release something like this as well.
        
        Install by cloning this repository, opening a terminal in the directory, and typing `pip install .`, or get the package from pypi by typing `pip install matlab_nbconvert`.
        
Keywords: matlab,jupyter,notebook,nbconvert
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Software Development :: Code Generators
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
