Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/krdlab/wgnuplot4cs

This project is library to control gnuplot on windows.
https://github.com/krdlab/wgnuplot4cs

Last synced: 9 days ago
JSON representation

This project is library to control gnuplot on windows.

Awesome Lists containing this project

README

        

# wgnuplot for C Sharp

*Last Update: 2009/01/19*

## What is it?

This assembly is to control gnuplot on Windows.

## Usage

1. Download "gp***win32.zip" from http://gnuplot.info/
2. Build wgnuplot4cs (Wgnuplot.sln)
3. On your project, refer Wgnuplot.dll

Sample:

const string deployPath = @"C:\Tools\gnuplot\binary\";
using (Wgnuplot plot = new Wgnuplot(deployPath + "pgnuplot.exe"))
{
plot.Send("splot x**2 + y**2");
}

## License

MIT License

Copyright (C) 2009 KrdLab All Rights Reserved.