Skip to content
This repository has been archived by the owner on Jan 5, 2019. It is now read-only.

martinjlowm/matlab-gnuplot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Gnuplot interface for MATLAB

Allows you to plot wonderful Gnuplot graphs directly from MATLAB without any external Gnuplot scripts.

Installation

Add the root of this library to your MATLAB path, e.g., addpath('/home/user/matlab_libs/matlab-gnuplot/').

Usage

gnuplot; % Initialize

gpl = gnuplot.Gnuplot();
gpl.setTerminal('tikz');
gpl.setOutput('sin_x.tex');
gpl.plot('sin(x)');
gpl.execute();

The test/ directory contains several other examples on how to use this library.

Invoking gpl.setTerminal() without arguments lists all available terminals of your Gnuplot installation.

About

[Archived] Gnuplot interface for MATLAB. Note: I no longer own a MATLAB license.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published